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

Unified Diff: Source/devtools/front_end/ModuleManager.js

Issue 170273003: DevTools: Implement extensions-based shortcut bindings (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 10 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: Source/devtools/front_end/ModuleManager.js
diff --git a/Source/devtools/front_end/ModuleManager.js b/Source/devtools/front_end/ModuleManager.js
index 80a696d65b176d4a04703a5b3e8681d93c6af18c..ae1e69802afcf34d9d1deda7b260938f36f99116 100644
--- a/Source/devtools/front_end/ModuleManager.js
+++ b/Source/devtools/front_end/ModuleManager.js
@@ -400,4 +400,19 @@ WebInspector.Revealer.prototype = {
reveal: function(object) {}
}
+/**
+ * @interface
+ */
+WebInspector.ActionDelegate = function()
+{
+}
+
+WebInspector.ActionDelegate.prototype = {
+ /**
+ * @param {!KeyboardEvent=} keyEvent
+ * @return {boolean}
+ */
+ handleAction: function(keyEvent) {}
+}
+
WebInspector.moduleManager = new WebInspector.ModuleManager(allDescriptors);

Powered by Google App Engine
This is Rietveld 408576698