| Index: chrome/browser/extensions/api/commands/command_service.h
|
| diff --git a/chrome/browser/extensions/api/commands/command_service.h b/chrome/browser/extensions/api/commands/command_service.h
|
| index 7f39b7d4c336dc40094111b0e7f6b27cb4ffca3c..19cde7e4a9d7f1ade7519ca45147cbb62206c3ad 100644
|
| --- a/chrome/browser/extensions/api/commands/command_service.h
|
| +++ b/chrome/browser/extensions/api/commands/command_service.h
|
| @@ -69,7 +69,7 @@ class CommandService : public BrowserContextKeyedAPI,
|
|
|
| // Constructs a CommandService object for the given profile.
|
| explicit CommandService(content::BrowserContext* context);
|
| - virtual ~CommandService();
|
| + ~CommandService() override;
|
|
|
| // BrowserContextKeyedAPI implementation.
|
| static BrowserContextKeyedAPIFactory<CommandService>* GetFactoryInstance();
|
| @@ -179,16 +179,14 @@ class CommandService : public BrowserContextKeyedAPI,
|
| static const bool kServiceRedirectedInIncognito = true;
|
|
|
| // ExtensionRegistryObserver.
|
| - virtual void OnExtensionWillBeInstalled(
|
| - content::BrowserContext* browser_context,
|
| - const Extension* extension,
|
| - bool is_update,
|
| - bool from_ephemeral,
|
| - const std::string& old_name) override;
|
| - virtual void OnExtensionUninstalled(
|
| - content::BrowserContext* browser_context,
|
| - const Extension* extension,
|
| - extensions::UninstallReason reason) override;
|
| + void OnExtensionWillBeInstalled(content::BrowserContext* browser_context,
|
| + const Extension* extension,
|
| + bool is_update,
|
| + bool from_ephemeral,
|
| + const std::string& old_name) override;
|
| + void OnExtensionUninstalled(content::BrowserContext* browser_context,
|
| + const Extension* extension,
|
| + extensions::UninstallReason reason) override;
|
|
|
| // Updates keybindings for a given |extension|'s page action, browser action
|
| // and named commands. Assigns new keybindings and removes relinquished
|
|
|