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

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

Issue 2915883002: DevTools: prepare to unify Network and CPU throttling UI (Closed)
Patch Set: gs Created 3 years, 7 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 7fbfb92c438f9b55fa76693edf4c336412657a27..953a5449f9394e91d90dbf1b4684dcd63e0e7bb9 100644
--- a/third_party/WebKit/Source/devtools/front_end/network/NetworkLogView.js
+++ b/third_party/WebKit/Source/devtools/front_end/network/NetworkLogView.js
@@ -1007,7 +1007,7 @@ Network.NetworkLogView = class extends UI.VBox {
var priority = request.initialPriority();
if (priority) {
this._suggestionBuilder.addItem(
- Network.NetworkLogView.FilterType.Priority, NetworkConditions.uiLabelForPriority(priority));
+ Network.NetworkLogView.FilterType.Priority, NetworkPriorities.uiLabelForPriority(priority));
}
if (request.mixedContentType !== 'none') {
@@ -1543,7 +1543,7 @@ Network.NetworkLogView = class extends UI.VBox {
return Network.NetworkLogView._requestSetCookieValueFilter.bind(null, value);
case Network.NetworkLogView.FilterType.Priority:
- return Network.NetworkLogView._requestPriorityFilter.bind(null, NetworkConditions.uiLabelToPriority(value));
+ return Network.NetworkLogView._requestPriorityFilter.bind(null, NetworkPriorities.uiLabelToPriority(value));
case Network.NetworkLogView.FilterType.StatusCode:
return Network.NetworkLogView._statusCodeFilter.bind(null, value);

Powered by Google App Engine
This is Rietveld 408576698