Index: Source/devtools/front_end/ConsoleView.js |
diff --git a/Source/devtools/front_end/ConsoleView.js b/Source/devtools/front_end/ConsoleView.js |
index c343566bad97167dadf72a88eb601e4a54356826..5f772d66a8d0a81a030ff6157bcdd59f70f6c63c 100644 |
--- a/Source/devtools/front_end/ConsoleView.js |
+++ b/Source/devtools/front_end/ConsoleView.js |
@@ -1180,3 +1180,22 @@ WebInspector.ConsoleGroup.prototype = { |
} |
} |
} |
+ |
+/** |
+ * @constructor |
+ * @implements {WebInspector.ActionDelegate} |
+ */ |
+WebInspector.ConsoleView.ShowConsoleActionDelegate = function() |
+{ |
+} |
+ |
+WebInspector.ConsoleView.ShowConsoleActionDelegate.prototype = { |
+ /** |
+ * @return {boolean} |
+ */ |
+ handleAction: function() |
+ { |
+ WebInspector.console.show(); |
+ return true; |
+ } |
+} |