diff options
author | evan@chromium.org <evan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-03-26 00:03:50 +0000 |
---|---|---|
committer | evan@chromium.org <evan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-03-26 00:03:50 +0000 |
commit | 98254d2e71ed3da0f3b11fce3be11369019488ca (patch) | |
tree | b98ec83822c4f54235ebd6567cadadd56c4cf282 /chrome/common/extensions | |
parent | de654e242cd46f57c373abe05f058fe094dc6410 (diff) | |
download | chromium_src-98254d2e71ed3da0f3b11fce3be11369019488ca.zip chromium_src-98254d2e71ed3da0f3b11fce3be11369019488ca.tar.gz chromium_src-98254d2e71ed3da0f3b11fce3be11369019488ca.tar.bz2 |
linux: turn on -Wextra
This is a followup to an earlier change (r38266) which did most of the
warning-related cleanup. This one just flips the flag, and fixes some
new warnings that crept in during the window while the flag was off.
Second try, now with some libpng fixes.
BUG=34160
Review URL: http://codereview.chromium.org/1320011
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@42700 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common/extensions')
-rw-r--r-- | chrome/common/extensions/extension.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/common/extensions/extension.h b/chrome/common/extensions/extension.h index 05c1522..0129858 100644 --- a/chrome/common/extensions/extension.h +++ b/chrome/common/extensions/extension.h @@ -304,7 +304,7 @@ class Extension { const std::string& launch_local_path() const { return launch_local_path_; } const std::string& launch_web_url() const { return launch_web_url_; } - const LaunchContainer launch_container() const { return launch_container_; } + LaunchContainer launch_container() const { return launch_container_; } // Gets the fully resolved absolute launch URL. GURL GetFullLaunchURL() const; |