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

Unified Diff: chrome/browser/ui/webui/options/manage_profile_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/manage_profile_handler.h
diff --git a/chrome/browser/ui/webui/options/manage_profile_handler.h b/chrome/browser/ui/webui/options/manage_profile_handler.h
index fc365765230c91943bebd15626a9ed2742bf57ee..b9722b8757d1623b23f59552dec76238930aa5bd 100644
--- a/chrome/browser/ui/webui/options/manage_profile_handler.h
+++ b/chrome/browser/ui/webui/options/manage_profile_handler.h
@@ -15,16 +15,17 @@ class ManageProfileHandler : public OptionsPageUIHandler {
virtual ~ManageProfileHandler();
// OptionsPageUIHandler:
- virtual void GetLocalizedValues(base::DictionaryValue* localized_strings);
- virtual void Initialize();
+ virtual void GetLocalizedValues(
+ base::DictionaryValue* localized_strings) OVERRIDE;
+ virtual void Initialize() OVERRIDE;
// WebUIMessageHandler:
- virtual void RegisterMessages();
+ virtual void RegisterMessages() OVERRIDE;
// content::NotificationObserver:
virtual void Observe(int type,
const content::NotificationSource& source,
- const content::NotificationDetails& details);
+ const content::NotificationDetails& details) OVERRIDE;
private:
// Callback for the "requestDefaultProfileIcons" message.

Powered by Google App Engine
This is Rietveld 408576698