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

Unified Diff: third_party/WebKit/Source/devtools/front_end/network/NetworkLogView.js

Issue 2444223002: [Devtools] Cleanup DataGrid's typecast and identifier naming (Closed)
Patch Set: changes Created 4 years, 2 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/network/NetworkLogView.js
diff --git a/third_party/WebKit/Source/devtools/front_end/network/NetworkLogView.js b/third_party/WebKit/Source/devtools/front_end/network/NetworkLogView.js
index 933a72fcad117a4cd43edcaaa749e39f96a4c4c1..79afa7694711e9e435a038409ea8c5c947e93eb0 100644
--- a/third_party/WebKit/Source/devtools/front_end/network/NetworkLogView.js
+++ b/third_party/WebKit/Source/devtools/front_end/network/NetworkLogView.js
@@ -1206,7 +1206,7 @@ WebInspector.NetworkLogView.prototype = {
this._timelineColumnSortIcon.classList.remove("sort-ascending", "sort-descending");
- if (this._dataGrid.sortColumnIdentifier() === "timeline") {
+ if (this._dataGrid.sortColumnId() === "timeline") {
if (this._dataGrid.sortOrder() === WebInspector.DataGrid.Order.Ascending)
this._timelineColumnSortIcon.classList.add("sort-ascending");
else

Powered by Google App Engine
This is Rietveld 408576698