| Index: chrome/browser/ui/webui/ntp/app_launcher_handler.h
|
| diff --git a/chrome/browser/ui/webui/ntp/app_launcher_handler.h b/chrome/browser/ui/webui/ntp/app_launcher_handler.h
|
| index 70e76c7ce7e6076d2be609ab63db7cf6042f3083..8fdc3b3641ed9cca6bbc21e2c8cb57b677bbfe52 100644
|
| --- a/chrome/browser/ui/webui/ntp/app_launcher_handler.h
|
| +++ b/chrome/browser/ui/webui/ntp/app_launcher_handler.h
|
| @@ -48,12 +48,12 @@ class AppLauncherHandler
|
| base::DictionaryValue* value);
|
|
|
| // WebUIMessageHandler implementation.
|
| - 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;
|
|
|
| // Populate the given dictionary with all installed app info.
|
| void FillAppDictionary(base::DictionaryValue* value);
|
| @@ -124,12 +124,12 @@ class AppLauncherHandler
|
| void PromptToEnableApp(const std::string& extension_id);
|
|
|
| // ExtensionUninstallDialog::Delegate:
|
| - virtual void ExtensionUninstallAccepted() OVERRIDE;
|
| - virtual void ExtensionUninstallCanceled() OVERRIDE;
|
| + virtual void ExtensionUninstallAccepted() override;
|
| + virtual void ExtensionUninstallCanceled() override;
|
|
|
| // ExtensionEnableFlowDelegate:
|
| - virtual void ExtensionEnableFlowFinished() OVERRIDE;
|
| - virtual void ExtensionEnableFlowAborted(bool user_initiated) OVERRIDE;
|
| + virtual void ExtensionEnableFlowFinished() override;
|
| + virtual void ExtensionEnableFlowAborted(bool user_initiated) override;
|
|
|
| // Returns the ExtensionUninstallDialog object for this class, creating it if
|
| // needed.
|
|
|