| Index: third_party/WebKit/Source/devtools/front_end/ui_lazy/CommandMenu.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/ui_lazy/CommandMenu.js b/third_party/WebKit/Source/devtools/front_end/ui_lazy/CommandMenu.js
|
| index 76bac863e06a96ba284675f9809d1f6a2fbf7a70..39788fa5e491bd9144182e18cf6d1596d0be1d0f 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/ui_lazy/CommandMenu.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/ui_lazy/CommandMenu.js
|
| @@ -307,7 +307,7 @@
|
| {
|
| var panelName = extension.descriptor()["name"];
|
| var tags = extension.descriptor()["tags"] || "";
|
| - return WebInspector.CommandMenu.createCommand(WebInspector.UIString("Panel"), tags, WebInspector.UIString("Show %s", extension.title(WebInspector.platform())), "", executeHandler, availableHandler);
|
| + return WebInspector.CommandMenu.createCommand(WebInspector.UIString("Panel"), tags, WebInspector.UIString("Show %s", extension.title()), "", executeHandler, availableHandler);
|
|
|
| /**
|
| * @return {boolean}
|
| @@ -332,7 +332,7 @@
|
| var drawerId = extension.descriptor()["name"];
|
| var executeHandler = WebInspector.inspectorView.showViewInDrawer.bind(WebInspector.inspectorView, drawerId);
|
| var tags = extension.descriptor()["tags"] || "";
|
| - return WebInspector.CommandMenu.createCommand(WebInspector.UIString("Drawer"), tags, WebInspector.UIString("Show %s", extension.title(WebInspector.platform())), "", executeHandler);
|
| + return WebInspector.CommandMenu.createCommand(WebInspector.UIString("Drawer"), tags, WebInspector.UIString("Show %s", extension.title()), "", executeHandler);
|
| }
|
|
|
| /** @type {!WebInspector.CommandMenu} */
|
|
|