Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(190)

Unified Diff: chrome/browser/ui/gtk/extensions/extension_keybinding_registry_gtk.cc

Issue 10911020: Enable commands API for platform apps. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 8 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/ui/gtk/extensions/extension_keybinding_registry_gtk.cc
diff --git a/chrome/browser/ui/gtk/extensions/extension_keybinding_registry_gtk.cc b/chrome/browser/ui/gtk/extensions/extension_keybinding_registry_gtk.cc
index 4badf73093a307c0a416db5e333f27eea15f30bf..13648306d8c1d77ef0f92a91cdbf1883ec5ff217 100644
--- a/chrome/browser/ui/gtk/extensions/extension_keybinding_registry_gtk.cc
+++ b/chrome/browser/ui/gtk/extensions/extension_keybinding_registry_gtk.cc
@@ -21,8 +21,10 @@ void extensions::ExtensionKeybindingRegistry::SetShortcutHandlingSuspended(
bool ExtensionKeybindingRegistryGtk::shortcut_handling_suspended_ = false;
ExtensionKeybindingRegistryGtk::ExtensionKeybindingRegistryGtk(
- Profile* profile, gfx::NativeWindow window)
- : ExtensionKeybindingRegistry(profile),
+ Profile* profile,
+ gfx::NativeWindow window,
+ ExtensionFilter extension_filter)
+ : ExtensionKeybindingRegistry(profile, extension_filter),
profile_(profile),
window_(window),
accel_group_(NULL) {

Powered by Google App Engine
This is Rietveld 408576698