Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(6452)

Unified Diff: chrome/browser/ui/webui/options/password_manager_handler.h

Issue 8604005: Add OVERRIDE to chrome/browser/ui/webui/. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/ui/webui/options/password_manager_handler.h
diff --git a/chrome/browser/ui/webui/options/password_manager_handler.h b/chrome/browser/ui/webui/options/password_manager_handler.h
index 1fe9a9dafa583747deba539c040e91cac29b92bb..6588881340024be21db77bc58e5f1615804fe21c 100644
--- a/chrome/browser/ui/webui/options/password_manager_handler.h
+++ b/chrome/browser/ui/webui/options/password_manager_handler.h
@@ -21,17 +21,17 @@ class PasswordManagerHandler : public OptionsPageUIHandler,
virtual ~PasswordManagerHandler();
// OptionsPageUIHandler implementation.
- virtual void GetLocalizedValues(DictionaryValue* localized_strings);
- virtual void Initialize();
- virtual void RegisterMessages();
+ virtual void GetLocalizedValues(DictionaryValue* localized_strings) OVERRIDE;
+ virtual void Initialize() OVERRIDE;
+ virtual void RegisterMessages() OVERRIDE;
// PasswordStore::Observer implementation.
- virtual void OnLoginsChanged();
+ virtual void OnLoginsChanged() OVERRIDE;
// content::NotificationObserver implementation.
virtual void Observe(int type,
const content::NotificationSource& source,
- const content::NotificationDetails& details);
+ const content::NotificationDetails& details) OVERRIDE;
private:
// The password store associated with the currently active profile.
@@ -88,12 +88,12 @@ class PasswordManagerHandler : public OptionsPageUIHandler,
explicit PasswordListPopulater(PasswordManagerHandler* page);
// Send a query to the password store to populate a password list.
- virtual void Populate();
+ virtual void Populate() OVERRIDE;
// Send the password store's reply back to the handler.
virtual void OnPasswordStoreRequestDone(
CancelableRequestProvider::Handle handle,
- const std::vector<webkit_glue::PasswordForm*>& result);
+ const std::vector<webkit_glue::PasswordForm*>& result) OVERRIDE;
};
// A short class to mediate requests to the password store for exceptions.
@@ -102,12 +102,12 @@ class PasswordManagerHandler : public OptionsPageUIHandler,
explicit PasswordExceptionListPopulater(PasswordManagerHandler* page);
// Send a query to the password store to populate a passwordException list.
- virtual void Populate();
+ virtual void Populate() OVERRIDE;
// Send the password store's reply back to the handler.
virtual void OnPasswordStoreRequestDone(
CancelableRequestProvider::Handle handle,
- const std::vector<webkit_glue::PasswordForm*>& result);
+ const std::vector<webkit_glue::PasswordForm*>& result) OVERRIDE;
};
// Password store consumer for populating the password list and exceptions.

Powered by Google App Engine
This is Rietveld 408576698