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

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 dd36b68cf14f4723147c7b634744bc9c69077c41..9de72e8f2865bbbea25513380ac1c4dd17e4a847 100644
--- a/third_party/WebKit/Source/devtools/front_end/network/NetworkLogView.js
+++ b/third_party/WebKit/Source/devtools/front_end/network/NetworkLogView.js
@@ -1162,7 +1162,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