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

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

Issue 2623743002: DevTools: extract modules (non-extensions) (Closed)
Patch Set: rebaseline 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/DatabaseTableView.js
diff --git a/third_party/WebKit/Source/devtools/front_end/resources/DatabaseTableView.js b/third_party/WebKit/Source/devtools/front_end/resources/DatabaseTableView.js
index ce6f2629ce136181d4eb43c0225c81cd71de9208..27ea490bd9d7cf2580c0b1c03e89026fd3b32f0d 100644
--- a/third_party/WebKit/Source/devtools/front_end/resources/DatabaseTableView.js
+++ b/third_party/WebKit/Source/devtools/front_end/resources/DatabaseTableView.js
@@ -76,7 +76,7 @@ Resources.DatabaseTableView = class extends UI.SimpleView {
this.detachChildWidgets();
this.element.removeChildren();
- this._dataGrid = UI.SortableDataGrid.create(columnNames, values);
+ this._dataGrid = DataGrid.SortableDataGrid.create(columnNames, values);
this._visibleColumnsInput.setVisible(!!this._dataGrid);
if (!this._dataGrid) {
this._emptyWidget = new UI.EmptyWidget(Common.UIString('The ā€œ%sā€\ntable is empty.', this.tableName));

Powered by Google App Engine
This is Rietveld 408576698