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