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

Unified Diff: Source/devtools/front_end/resources/DatabaseQueryView.js

Issue 411263003: DevTools: Extract SortableDataGrid. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 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/resources/DatabaseQueryView.js
diff --git a/Source/devtools/front_end/resources/DatabaseQueryView.js b/Source/devtools/front_end/resources/DatabaseQueryView.js
index 04c0a8fb5e4a7a3dafd7615c378ecf190cde101f..3b874bf8139f81f6709ced321403b8d476a9429a 100644
--- a/Source/devtools/front_end/resources/DatabaseQueryView.js
+++ b/Source/devtools/front_end/resources/DatabaseQueryView.js
@@ -143,7 +143,7 @@ WebInspector.DatabaseQueryView.prototype = {
_queryFinished: function(query, columnNames, values)
{
- var dataGrid = WebInspector.DataGrid.createSortableDataGrid(columnNames, values);
+ var dataGrid = WebInspector.SortableDataGrid.create(columnNames, values);
var trimmedQuery = query.trim();
if (dataGrid) {
« no previous file with comments | « Source/devtools/front_end/network/NetworkPanel.js ('k') | Source/devtools/front_end/resources/DatabaseTableView.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698