| Index: chrome/browser/ui/views/extensions/extension_keybinding_registry_views.h
|
| diff --git a/chrome/browser/ui/views/extensions/extension_keybinding_registry_views.h b/chrome/browser/ui/views/extensions/extension_keybinding_registry_views.h
|
| index 4e2fc87addb077ee095b2ade0b839f72c47f2f48..14ec1578c5c18f4de426a8c82bdbfbe7e90e61f5 100644
|
| --- a/chrome/browser/ui/views/extensions/extension_keybinding_registry_views.h
|
| +++ b/chrome/browser/ui/views/extensions/extension_keybinding_registry_views.h
|
| @@ -38,17 +38,17 @@ class ExtensionKeybindingRegistryViews
|
| virtual ~ExtensionKeybindingRegistryViews();
|
|
|
| // Overridden from ui::AcceleratorTarget.
|
| - virtual bool AcceleratorPressed(const ui::Accelerator& accelerator) OVERRIDE;
|
| - virtual bool CanHandleAccelerators() const OVERRIDE;
|
| + virtual bool AcceleratorPressed(const ui::Accelerator& accelerator) override;
|
| + virtual bool CanHandleAccelerators() const override;
|
|
|
| private:
|
| // Overridden from ExtensionKeybindingRegistry:
|
| virtual void AddExtensionKeybinding(
|
| const extensions::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;
|
|
|
| // Weak pointer to the our profile. Not owned by us.
|
| Profile* profile_;
|
|
|