| Index: chrome/browser/extensions/extension_keybinding_registry.h
|
| diff --git a/chrome/browser/extensions/extension_keybinding_registry.h b/chrome/browser/extensions/extension_keybinding_registry.h
|
| index 0747ce659f877f4cf145deadf4439e043a966e78..39ca0d9d65df378a401bf3637ee3f8844b6e4496 100644
|
| --- a/chrome/browser/extensions/extension_keybinding_registry.h
|
| +++ b/chrome/browser/extensions/extension_keybinding_registry.h
|
| @@ -14,11 +14,12 @@
|
| #include "content/public/browser/notification_registrar.h"
|
| #include "content/public/browser/notification_source.h"
|
|
|
| -class Extension;
|
| class Profile;
|
|
|
| namespace extensions {
|
|
|
| +class Extension;
|
| +
|
| // The ExtensionKeybindingRegistry is a class that handles the cross-platform
|
| // logic for keyboard accelerators. See platform-specific implementations for
|
| // implementation details for each platform.
|
| @@ -34,9 +35,11 @@ class ExtensionKeybindingRegistry : public content::NotificationObserver {
|
|
|
| protected:
|
| // Add extension keybinding for the events defined by the |extension|.
|
| - virtual void AddExtensionKeybinding(const Extension* extension) = 0;
|
| + virtual void AddExtensionKeybinding(
|
| + const Extension* extension) = 0;
|
| // Remove extension bindings for |extension|.
|
| - virtual void RemoveExtensionKeybinding(const Extension* extension) = 0;
|
| + virtual void RemoveExtensionKeybinding(
|
| + const Extension* extension) = 0;
|
|
|
| // Make sure all extensions registered have keybindings added.
|
| void Init();
|
|
|