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

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

Issue 629463003: replace OVERRIDE and FINAL with override and final in chrome/browser/ui/[w-z]* (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 months 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 36f8cf5a8f2e7178f75682d5b2eac0a7203a5cb1..3818c88789d61e8490b5a9aba5db647b4a9ef260 100644
--- a/chrome/browser/ui/webui/options/manage_profile_handler.h
+++ b/chrome/browser/ui/webui/options/manage_profile_handler.h
@@ -29,21 +29,21 @@ class ManageProfileHandler : public OptionsPageUIHandler,
// OptionsPageUIHandler:
virtual void GetLocalizedValues(
- base::DictionaryValue* localized_strings) OVERRIDE;
- virtual void InitializeHandler() OVERRIDE;
- virtual void InitializePage() OVERRIDE;
- virtual void Uninitialize() OVERRIDE;
+ base::DictionaryValue* localized_strings) override;
+ virtual void InitializeHandler() override;
+ virtual void InitializePage() override;
+ virtual void Uninitialize() override;
// WebUIMessageHandler:
- virtual void RegisterMessages() OVERRIDE;
+ virtual void RegisterMessages() override;
// content::NotificationObserver:
virtual void Observe(int type,
const content::NotificationSource& source,
- const content::NotificationDetails& details) OVERRIDE;
+ const content::NotificationDetails& details) override;
// ProfileSyncServiceObserver:
- virtual void OnStateChanged() OVERRIDE;
+ virtual void OnStateChanged() override;
private:
// This function creates signed in user specific strings in loadTimeData.

Powered by Google App Engine
This is Rietveld 408576698