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

Unified Diff: chrome/browser/ui/webui/options/chromeos/core_chromeos_options_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/chromeos/core_chromeos_options_handler.h
diff --git a/chrome/browser/ui/webui/options/chromeos/core_chromeos_options_handler.h b/chrome/browser/ui/webui/options/chromeos/core_chromeos_options_handler.h
index 7a775844a3cb4c1ebb57e9c5c5ad24699557974e..f50d6e2c2fea4d8ff29926c4de955f5600ac661c 100644
--- a/chrome/browser/ui/webui/options/chromeos/core_chromeos_options_handler.h
+++ b/chrome/browser/ui/webui/options/chromeos/core_chromeos_options_handler.h
@@ -26,30 +26,30 @@ class CoreChromeOSOptionsHandler : public ::options::CoreOptionsHandler,
virtual ~CoreChromeOSOptionsHandler();
// ::CoreOptionsHandler overrides
- virtual void RegisterMessages() OVERRIDE;
- virtual base::Value* FetchPref(const std::string& pref_name) OVERRIDE;
- virtual void InitializeHandler() OVERRIDE;
- virtual void ObservePref(const std::string& pref_name) OVERRIDE;
+ virtual void RegisterMessages() override;
+ virtual base::Value* FetchPref(const std::string& pref_name) override;
+ virtual void InitializeHandler() override;
+ virtual void ObservePref(const std::string& pref_name) override;
virtual void SetPref(const std::string& pref_name,
const base::Value* value,
- const std::string& metric) OVERRIDE;
- virtual void StopObservingPref(const std::string& path) OVERRIDE;
+ const std::string& metric) override;
+ virtual void StopObservingPref(const std::string& path) override;
virtual base::Value* CreateValueForPref(
const std::string& pref_name,
- const std::string& controlling_pref_name) OVERRIDE;
+ const std::string& controlling_pref_name) override;
// OptionsPageUIHandler implementation.
virtual void GetLocalizedValues(
- base::DictionaryValue* localized_strings) OVERRIDE;
+ base::DictionaryValue* localized_strings) override;
// content::NotificationObserver implementation.
virtual void Observe(int type,
const content::NotificationSource& source,
- const content::NotificationDetails& details) OVERRIDE;
+ const content::NotificationDetails& details) override;
private:
virtual void OnPreferenceChanged(PrefService* service,
- const std::string& pref_name) OVERRIDE;
+ const std::string& pref_name) override;
// Called from Javascript to select the network to show proxy settings
// for. Triggers pref notifications about the updated proxy settings.

Powered by Google App Engine
This is Rietveld 408576698