| 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..7b76f5e2e2e9f6232fb926c72fa405c45675c413 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, MobileThrottling.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, MobileThrottling.uiLabelToPriority(value));
|
|
|
| case Network.NetworkLogView.FilterType.StatusCode:
|
| return Network.NetworkLogView._statusCodeFilter.bind(null, value);
|
|
|