| 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.
|
|
|