| Index: chrome/browser/ui/webui/options/personal_options_handler.h
|
| diff --git a/chrome/browser/ui/webui/options/personal_options_handler.h b/chrome/browser/ui/webui/options/personal_options_handler.h
|
| index a37b9675676a461b09968c5cbba77d6181d8594f..ef714fe92165f55e83edca658d5d2b79f1793622 100644
|
| --- a/chrome/browser/ui/webui/options/personal_options_handler.h
|
| +++ b/chrome/browser/ui/webui/options/personal_options_handler.h
|
| @@ -21,19 +21,19 @@ class PersonalOptionsHandler : public OptionsPageUIHandler,
|
| virtual ~PersonalOptionsHandler();
|
|
|
| // OptionsPageUIHandler implementation.
|
| - virtual void GetLocalizedValues(DictionaryValue* localized_strings);
|
| - virtual void Initialize();
|
| + virtual void GetLocalizedValues(DictionaryValue* localized_strings) OVERRIDE;
|
| + virtual void Initialize() OVERRIDE;
|
|
|
| // WebUIMessageHandler implementation.
|
| - virtual void RegisterMessages();
|
| + virtual void RegisterMessages() OVERRIDE;
|
|
|
| // content::NotificationObserver implementation.
|
| virtual void Observe(int type,
|
| const content::NotificationSource& source,
|
| - const content::NotificationDetails& details);
|
| + const content::NotificationDetails& details) OVERRIDE;
|
|
|
| // ProfileSyncServiceObserver implementation.
|
| - virtual void OnStateChanged();
|
| + virtual void OnStateChanged() OVERRIDE;
|
|
|
| private:
|
| void ObserveThemeChanged();
|
|
|