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

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

Issue 21163003: DevTools: Implement undo, redo operations for the DOMStorage views. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 7 years, 5 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/ResourcesPanel.js
diff --git a/Source/devtools/front_end/ResourcesPanel.js b/Source/devtools/front_end/ResourcesPanel.js
index 743c7fc35e0e5d4db5ff989aa1c72cd92a7fa222..80ff7488f2a3286095d8f9a5b039ffdf4aaedb8a 100644
--- a/Source/devtools/front_end/ResourcesPanel.js
+++ b/Source/devtools/front_end/ResourcesPanel.js
@@ -135,6 +135,15 @@ WebInspector.ResourcesPanel.prototype = {
this._initialize();
},
+ /**
+ * @param {WebInspector.Event} event
apavlov 2013/07/31 12:51:35 This is not the web inspector event, this is a DOM
+ */
+ handleShortcut: function(event)
+ {
+ if (this.visibleView && typeof this.visibleView.handleShortcut === "function")
+ return this.visibleView.handleShortcut(event);
+ },
+
_initialize: function()
{
if (!this._initialized && this.isShowing() && this._cachedResourcesWereLoaded) {

Powered by Google App Engine
This is Rietveld 408576698