| Index: Source/devtools/front_end/main/Main.js
|
| diff --git a/Source/devtools/front_end/main/Main.js b/Source/devtools/front_end/main/Main.js
|
| index 2c94e2245b791306f19c33d3842dd92e4a04f866..a3e46d439d67fd5507433a33852158da37c83637 100644
|
| --- a/Source/devtools/front_end/main/Main.js
|
| +++ b/Source/devtools/front_end/main/Main.js
|
| @@ -181,18 +181,6 @@ WebInspector.Main.prototype = {
|
| WebInspector.initializeUIUtils(window);
|
| WebInspector.installComponentRootStyles(/** @type {!Element} */ (document.body));
|
|
|
| - if (Runtime.queryParam("toolbarColor") && Runtime.queryParam("textColor"))
|
| - WebInspector.setToolbarColors(document, /** @type {string} */ (Runtime.queryParam("toolbarColor")), /** @type {string} */ (Runtime.queryParam("textColor")));
|
| - InspectorFrontendHost.events.addEventListener(InspectorFrontendHostAPI.Events.SetToolbarColors, updateToolbarColors);
|
| - /**
|
| - * @param {!WebInspector.Event} event
|
| - * @suppressGlobalPropertiesCheck
|
| - */
|
| - function updateToolbarColors(event)
|
| - {
|
| - WebInspector.setToolbarColors(document, /** @type {string} */ (event.data["backgroundColor"]), /** @type {string} */ (event.data["color"]));
|
| - }
|
| -
|
| this._addMainEventListeners(document);
|
|
|
| var canDock = !!Runtime.queryParam("can_dock");
|
|
|