| 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 15af128b3400bd2593d30507f7542ee3c998afde..a19a8f404a7e5ceaa14ef4127b6f7955c48585d1 100644
|
| --- a/Source/devtools/front_end/main/Main.js
|
| +++ b/Source/devtools/front_end/main/Main.js
|
| @@ -179,6 +179,16 @@ WebInspector.Main.prototype = {
|
|
|
| _loaded: function()
|
| {
|
| + if (WebInspector.queryParam("toolbox")) {
|
| + new WebInspector.Toolbox();
|
| + return;
|
| + }
|
| +
|
| + WebInspector.settings = new WebInspector.Settings();
|
| + WebInspector.experimentsSettings = new WebInspector.ExperimentsSettings(WebInspector.queryParam("experiments") !== null);
|
| + // This setting is needed for backwards compatibility with Devtools CodeSchool extension. DO NOT REMOVE
|
| + WebInspector.settings.pauseOnExceptionStateString = new WebInspector.PauseOnExceptionStateSetting();
|
| +
|
| if (!InspectorFrontendHost.sendMessageToEmbedder) {
|
| var helpScreen = new WebInspector.HelpScreen(WebInspector.UIString("Incompatible Chrome version"));
|
| var p = helpScreen.contentElement.createChild("p", "help-section");
|
|
|