diff options
author | rsleevi@chromium.org <rsleevi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-02-07 03:02:08 +0000 |
---|---|---|
committer | rsleevi@chromium.org <rsleevi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-02-07 03:02:08 +0000 |
commit | b94584a231b160d2570cc38e78457fb852eb0c41 (patch) | |
tree | 8d03a214b0f7305c38eb8e2b6852015ae38fef07 /chrome/browser/shell_integration_unittest.cc | |
parent | 8bc6596e0bdb39d1450d595bcc62244a5f3190b9 (diff) | |
download | chromium_src-b94584a231b160d2570cc38e78457fb852eb0c41.zip chromium_src-b94584a231b160d2570cc38e78457fb852eb0c41.tar.gz chromium_src-b94584a231b160d2570cc38e78457fb852eb0c41.tar.bz2 |
Linux/ChromeOS Chromium style checker cleanup, chrome/browser edition.
Automated clean up of style checker errors that were missed due to the plugin
not being executed on implementation files.
BUG=115047
Review URL: https://codereview.chromium.org/12212048
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@181164 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/shell_integration_unittest.cc')
-rw-r--r-- | chrome/browser/shell_integration_unittest.cc | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/chrome/browser/shell_integration_unittest.cc b/chrome/browser/shell_integration_unittest.cc index 8dbb3e7..13b28ef 100644 --- a/chrome/browser/shell_integration_unittest.cc +++ b/chrome/browser/shell_integration_unittest.cc @@ -41,7 +41,7 @@ class MockEnvironment : public base::Environment { variables_[name] = value; } - virtual bool GetVar(const char* variable_name, std::string* result) { + virtual bool GetVar(const char* variable_name, std::string* result) OVERRIDE { if (ContainsKey(variables_, variable_name)) { *result = variables_[variable_name]; return true; @@ -50,12 +50,13 @@ class MockEnvironment : public base::Environment { return false; } - virtual bool SetVar(const char* variable_name, const std::string& new_value) { + virtual bool SetVar(const char* variable_name, + const std::string& new_value) OVERRIDE { ADD_FAILURE(); return false; } - virtual bool UnSetVar(const char* variable_name) { + virtual bool UnSetVar(const char* variable_name) OVERRIDE { ADD_FAILURE(); return false; } |