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

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

Issue 22346003: DevTools: DOMStorage should notify the view about storage modifications instead of DOMStorageModel (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Review comments addressed! Created 7 years, 4 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
« no previous file with comments | « Source/devtools/front_end/DOMStorageItemsView.js ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/devtools/front_end/ResourcesPanel.js
diff --git a/Source/devtools/front_end/ResourcesPanel.js b/Source/devtools/front_end/ResourcesPanel.js
index c5eb39168d1895b0fcb1737f4ba6222ca2115508..37ae9891f26b147ff32b1b2a1c031e4887b00697 100644
--- a/Source/devtools/front_end/ResourcesPanel.js
+++ b/Source/devtools/front_end/ResourcesPanel.js
@@ -515,7 +515,7 @@ WebInspector.ResourcesPanel.prototype = {
var view;
view = this._domStorageViews.get(domStorage);
if (!view) {
- view = new WebInspector.DOMStorageItemsView(domStorage, WebInspector.domStorageModel);
+ view = new WebInspector.DOMStorageItemsView(domStorage);
this._domStorageViews.put(domStorage, view);
}
« no previous file with comments | « Source/devtools/front_end/DOMStorageItemsView.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698