| Index: third_party/WebKit/Source/devtools/front_end/ui/UIUtils.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/ui/UIUtils.js b/third_party/WebKit/Source/devtools/front_end/ui/UIUtils.js
|
| index ba4d0820a469ab69105a6c7e05ec09d153f8a142..8b3eed21bac49e967811aec1682d4779e58d87b9 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/ui/UIUtils.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/ui/UIUtils.js
|
| @@ -1899,26 +1899,6 @@ WebInspector.ThemeSupport.prototype = {
|
| };
|
|
|
| /**
|
| - * @param {?NetworkAgent.ResourcePriority} priority
|
| - * @return {string}
|
| - */
|
| -WebInspector.uiLabelForPriority = function(priority)
|
| -{
|
| - var labelMap = WebInspector.uiLabelForPriority._priorityToUILabel;
|
| - if (!labelMap) {
|
| - labelMap = new Map([
|
| - [NetworkAgent.ResourcePriority.VeryLow, WebInspector.UIString("Lowest")],
|
| - [NetworkAgent.ResourcePriority.Low, WebInspector.UIString("Low")],
|
| - [NetworkAgent.ResourcePriority.Medium, WebInspector.UIString("Medium")],
|
| - [NetworkAgent.ResourcePriority.High, WebInspector.UIString("High")],
|
| - [NetworkAgent.ResourcePriority.VeryHigh, WebInspector.UIString("Highest")]
|
| - ]);
|
| - WebInspector.uiLabelForPriority._priorityToUILabel = labelMap;
|
| - }
|
| - return labelMap.get(priority) || WebInspector.UIString("Unknown");
|
| -};
|
| -
|
| -/**
|
| * @param {string} url
|
| * @param {string=} linkText
|
| * @param {string=} classes
|
|
|