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/autofill | |
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/autofill')
-rw-r--r-- | chrome/browser/autofill/autocomplete_history_manager_unittest.cc | 5 | ||||
-rw-r--r-- | chrome/browser/autofill/autofill_browsertest.cc | 2 | ||||
-rw-r--r-- | chrome/browser/autofill/autofill_metrics_unittest.cc | 2 |
3 files changed, 6 insertions, 3 deletions
diff --git a/chrome/browser/autofill/autocomplete_history_manager_unittest.cc b/chrome/browser/autofill/autocomplete_history_manager_unittest.cc index 846a54a..3a8f6c85 100644 --- a/chrome/browser/autofill/autocomplete_history_manager_unittest.cc +++ b/chrome/browser/autofill/autocomplete_history_manager_unittest.cc @@ -179,7 +179,10 @@ class AutocompleteHistoryManagerStubSend : public AutocompleteHistoryManager { : AutocompleteHistoryManager(web_contents, profile, wds.Pass()) {} // Intentionally swallow the message. - virtual bool Send(IPC::Message* message) { delete message; return true; } + virtual bool Send(IPC::Message* message) OVERRIDE { + delete message; + return true; + } }; } // namespace diff --git a/chrome/browser/autofill/autofill_browsertest.cc b/chrome/browser/autofill/autofill_browsertest.cc index ab41c34..40fd1a4 100644 --- a/chrome/browser/autofill/autofill_browsertest.cc +++ b/chrome/browser/autofill/autofill_browsertest.cc @@ -96,7 +96,7 @@ class WindowedPersonalDataManagerObserver content::NotificationService::AllSources()); } - ~WindowedPersonalDataManagerObserver() { + virtual ~WindowedPersonalDataManagerObserver() { if (!infobar_service_) return; diff --git a/chrome/browser/autofill/autofill_metrics_unittest.cc b/chrome/browser/autofill/autofill_metrics_unittest.cc index 0141830..36747ea 100644 --- a/chrome/browser/autofill/autofill_metrics_unittest.cc +++ b/chrome/browser/autofill/autofill_metrics_unittest.cc @@ -190,7 +190,7 @@ class TestAutofillManager : public AutofillManager { set_metric_logger(new MockAutofillMetrics); } - virtual bool IsAutofillEnabled() const { return autofill_enabled_; } + virtual bool IsAutofillEnabled() const OVERRIDE { return autofill_enabled_; } void set_autofill_enabled(bool autofill_enabled) { autofill_enabled_ = autofill_enabled; |