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

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: Rebased patch Created 6 years, 9 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 603572b99d4c365df6e4412278b7f1c82edd76e8..08e2ea2836a9961ac175b23d2726982d14fd6c87 100644
--- a/Source/devtools/front_end/ModuleManager.js
+++ b/Source/devtools/front_end/ModuleManager.js
@@ -412,4 +412,19 @@ WebInspector.Revealer.prototype = {
reveal: function(object) {}
}
+/**
+ * @interface
+ */
+WebInspector.ActionDelegate = function()
+{
+}
+
+WebInspector.ActionDelegate.prototype = {
+ /**
+ * @param {!KeyboardEvent=} keyEvent
pfeldman 2014/03/24 16:54:22 Event
apavlov 2014/03/25 10:03:45 Done.
+ * @return {boolean}
+ */
+ handleAction: function(keyEvent) {}
+}
+
WebInspector.moduleManager = new WebInspector.ModuleManager(allDescriptors);

Powered by Google App Engine
This is Rietveld 408576698