diff options
Diffstat (limited to 'chrome/browser/extensions/extension_commands_global_registry.h')
-rw-r--r-- | chrome/browser/extensions/extension_commands_global_registry.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/chrome/browser/extensions/extension_commands_global_registry.h b/chrome/browser/extensions/extension_commands_global_registry.h index c27f75c..ccf0061 100644 --- a/chrome/browser/extensions/extension_commands_global_registry.h +++ b/chrome/browser/extensions/extension_commands_global_registry.h @@ -72,14 +72,14 @@ class ExtensionCommandsGlobalRegistry // Overridden from ExtensionKeybindingRegistry: virtual void AddExtensionKeybinding( const Extension* extension, - const std::string& command_name) OVERRIDE; + const std::string& command_name) override; virtual void RemoveExtensionKeybindingImpl( const ui::Accelerator& accelerator, - const std::string& command_name) OVERRIDE; + 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; + virtual void OnKeyPressed(const ui::Accelerator& accelerator) override; // Weak pointer to our browser context. Not owned by us. content::BrowserContext* browser_context_; |