Chromium Code Reviews| Index: chrome/browser/extensions/extension_keybinding_registry.h |
| =================================================================== |
| --- chrome/browser/extensions/extension_keybinding_registry.h (revision 144430) |
| +++ chrome/browser/extensions/extension_keybinding_registry.h (working copy) |
| @@ -40,10 +40,12 @@ |
| protected: |
| // Add extension keybinding for the events defined by the |extension|. |
|
Yoyo Zhou
2012/06/28 22:40:51
Comments need to be updated.
Finnur
2012/06/28 22:49:01
Ah, right!
On 2012/06/28 22:40:51, Yoyo Zhou wro
|
| virtual void AddExtensionKeybinding( |
| - const Extension* extension) = 0; |
| + const Extension* extension, |
| + const std::string& command_name) = 0; |
| // Remove extension bindings for |extension|. |
| virtual void RemoveExtensionKeybinding( |
| - const Extension* extension) = 0; |
| + const Extension* extension, |
| + const std::string& command_name) = 0; |
| // Make sure all extensions registered have keybindings added. |
| void Init(); |