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

Unified Diff: third_party/WebKit/Source/devtools/front_end/resources/ResourcesPanel.js

Issue 2654483004: [DevTools] Provide a way to delete Indexed DBs (Closed)
Patch Set: Moved the confirm dialog Created 3 years, 11 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: third_party/WebKit/Source/devtools/front_end/resources/ResourcesPanel.js
diff --git a/third_party/WebKit/Source/devtools/front_end/resources/ResourcesPanel.js b/third_party/WebKit/Source/devtools/front_end/resources/ResourcesPanel.js
index f2efc635a2a5654bfe6dab05715a5f9a3ce2cf5f..867b15349ad851a20f5b3bb0867db55ccab44a87 100644
--- a/third_party/WebKit/Source/devtools/front_end/resources/ResourcesPanel.js
+++ b/third_party/WebKit/Source/devtools/front_end/resources/ResourcesPanel.js
@@ -1671,7 +1671,7 @@ Resources.IDBDatabaseTreeElement = class extends Resources.BaseStorageTreeElemen
onselect(selectedByUser) {
super.onselect(selectedByUser);
if (!this._view)
- this._view = new Resources.IDBDatabaseView(this._database);
+ this._view = new Resources.IDBDatabaseView(this._model, this._database);
this._storagePanel._innerShowView(this._view);
return false;

Powered by Google App Engine
This is Rietveld 408576698