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

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

Issue 2702523003: [DevTools] Continue GlassPane refactoring. (Closed)
Patch Set: element Created 3 years, 10 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/IndexedDBViews.js
diff --git a/third_party/WebKit/Source/devtools/front_end/resources/IndexedDBViews.js b/third_party/WebKit/Source/devtools/front_end/resources/IndexedDBViews.js
index 79978b4355831decdfd2a7d6595e628545b510df..c6f2a1a3a8a657ff8ec96e44ece4baf60bf202a9 100644
--- a/third_party/WebKit/Source/devtools/front_end/resources/IndexedDBViews.js
+++ b/third_party/WebKit/Source/devtools/front_end/resources/IndexedDBViews.js
@@ -71,7 +71,7 @@ Resources.IDBDatabaseView = class extends UI.VBox {
_deleteDatabase() {
UI.ConfirmDialog.show(
- Common.UIString('Are you sure you want to delete "%s"?', this._database.databaseId.name),
+ this.element, Common.UIString('Are you sure you want to delete "%s"?', this._database.databaseId.name),
() => this._model.deleteDatabase(this._database.databaseId));
}
};

Powered by Google App Engine
This is Rietveld 408576698