Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1457)

Unified Diff: Source/devtools/front_end/main/Main.js

Issue 385173007: DevTools: move UI components to target observers in preparation to early UI initialization. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/devtools/front_end/main/AdvancedApp.js ('k') | Source/devtools/front_end/main/RenderingOptions.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 51e93bb65b6651dbb6ec99e28c3634b694c9a929..7d0ed9808bb59884d425b43fc9d23d8001b0ab18 100644
--- a/Source/devtools/front_end/main/Main.js
+++ b/Source/devtools/front_end/main/Main.js
@@ -190,6 +190,7 @@ WebInspector.Main.prototype = {
_loaded: function()
{
console.timeStamp("Main._loaded");
+ WebInspector.moduleManager = new WebInspector.ModuleManager(allDescriptors);
if (WebInspector.queryParam("toolbox")) {
new WebInspector.Toolbox();
return;
@@ -359,7 +360,7 @@ WebInspector.Main.prototype = {
new WebInspector.CSSStyleSheetMapping(WebInspector.cssModel, WebInspector.workspace, WebInspector.networkWorkspaceBinding);
// Create settings before loading modules.
- WebInspector.settings.initializeBackendSettings();
+ new WebInspector.RenderingOptions();
this._registerModules();
WebInspector.actionRegistry = new WebInspector.ActionRegistry();
« no previous file with comments | « Source/devtools/front_end/main/AdvancedApp.js ('k') | Source/devtools/front_end/main/RenderingOptions.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698