| Index: chrome/browser/extensions/extension_commands_global_registry.h
|
| diff --git a/chrome/browser/extensions/extension_commands_global_registry.h b/chrome/browser/extensions/extension_commands_global_registry.h
|
| index ccf0061a5dd4e0ecacd9e792c7655d82eb4ab47f..77daa1c8b0718b5dcaddc02dcb5f77d94aa38c4f 100644
|
| --- a/chrome/browser/extensions/extension_commands_global_registry.h
|
| +++ b/chrome/browser/extensions/extension_commands_global_registry.h
|
| @@ -45,7 +45,7 @@ class ExtensionCommandsGlobalRegistry
|
| static void SetShortcutHandlingSuspended(bool suspended);
|
|
|
| explicit ExtensionCommandsGlobalRegistry(content::BrowserContext* context);
|
| - virtual ~ExtensionCommandsGlobalRegistry();
|
| + ~ExtensionCommandsGlobalRegistry() override;
|
|
|
| // Returns which non-global command registry is active (belonging to the
|
| // currently active window).
|
| @@ -70,16 +70,14 @@ class ExtensionCommandsGlobalRegistry
|
| }
|
|
|
| // Overridden from ExtensionKeybindingRegistry:
|
| - virtual void AddExtensionKeybinding(
|
| - const Extension* extension,
|
| - const std::string& command_name) override;
|
| - virtual void RemoveExtensionKeybindingImpl(
|
| - const ui::Accelerator& accelerator,
|
| - const std::string& command_name) override;
|
| + void AddExtensionKeybinding(const Extension* extension,
|
| + const std::string& command_name) override;
|
| + void RemoveExtensionKeybindingImpl(const ui::Accelerator& accelerator,
|
| + const std::string& command_name) override;
|
|
|
| // Called by the GlobalShortcutListener object when a shortcut this class has
|
| // registered for has been pressed.
|
| - virtual void OnKeyPressed(const ui::Accelerator& accelerator) override;
|
| + void OnKeyPressed(const ui::Accelerator& accelerator) override;
|
|
|
| // Weak pointer to our browser context. Not owned by us.
|
| content::BrowserContext* browser_context_;
|
|
|