diff options
author | evan@chromium.org <evan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-03-25 22:53:51 +0000 |
---|---|---|
committer | evan@chromium.org <evan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-03-25 22:53:51 +0000 |
commit | 95250e4c742d27fad6e4bb737a8110a4ee63323c (patch) | |
tree | 4878d3c58b349177498802d89cb4a86bc5180147 /chrome/common/extensions | |
parent | c9fe2cd069cc6f00ece6765c29cefb24a8276d71 (diff) | |
download | chromium_src-95250e4c742d27fad6e4bb737a8110a4ee63323c.zip chromium_src-95250e4c742d27fad6e4bb737a8110a4ee63323c.tar.gz chromium_src-95250e4c742d27fad6e4bb737a8110a4ee63323c.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.
BUG=34160
Review URL: http://codereview.chromium.org/597023
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@42688 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; |