| Index: third_party/WebKit/Source/devtools/front_end/network/FilterSuggestionBuilder.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/network/FilterSuggestionBuilder.js b/third_party/WebKit/Source/devtools/front_end/network/FilterSuggestionBuilder.js
|
| index 72cea82e8b226c634c89c23e3355b9301d51601c..cbda72fe2199f358c898c6119e7a32a57f55cf1c 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/network/FilterSuggestionBuilder.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/network/FilterSuggestionBuilder.js
|
| @@ -89,11 +89,11 @@ Network.FilterSuggestionBuilder = class {
|
| result = [];
|
| /** @type {!Map<number, !Protocol.Network.ResourcePriority>} */
|
| var numericToPriorityMap = new Map();
|
| - NetworkConditions.prioritySymbolToNumericMap().forEach((value, key) => numericToPriorityMap.set(value, key));
|
| + NetworkPriorities.prioritySymbolToNumericMap().forEach((value, key) => numericToPriorityMap.set(value, key));
|
| var sortedNumericPriorities = numericToPriorityMap.keysArray();
|
| sortedNumericPriorities.sortNumbers();
|
| var sortedPriorities = sortedNumericPriorities.map(value => numericToPriorityMap.get(value));
|
| - var sortedPriorityLabels = sortedPriorities.map(value => NetworkConditions.uiLabelForPriority(value));
|
| + var sortedPriorityLabels = sortedPriorities.map(value => NetworkPriorities.uiLabelForPriority(value));
|
|
|
| for (var value of sortedPriorityLabels) {
|
| if (!resultSet.has(value))
|
|
|