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

Unified Diff: Source/devtools/front_end/Runtime.js

Issue 593673002: DevTools: Fix debug_devtools=1 mode "main" extensions loading after r182328 (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 3 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/devtools/front_end/Runtime.js
diff --git a/Source/devtools/front_end/Runtime.js b/Source/devtools/front_end/Runtime.js
index 817c59379b068c965dc881a3e982fce59a256b0f..fa9422bf7565d782bfe38af985b31a8f8b6d1093 100644
--- a/Source/devtools/front_end/Runtime.js
+++ b/Source/devtools/front_end/Runtime.js
@@ -245,7 +245,7 @@ Runtime.prototype = {
var content;
// FIXME: This is a temp workaround to avoid core module loading attempts in the release mode.
// It should be removed when the new application loader is implemented.
- if (!this._coreModules.hasOwnProperty(moduleName))
+ if (moduleName === "main" || !this._coreModules.hasOwnProperty(moduleName))
content = loadResource(moduleName + "/module.json");
else
content = "{}";
@@ -524,6 +524,11 @@ Runtime.Module = function(manager, descriptor)
for (var i = 0; extensions && i < extensions.length; ++i)
this._manager._extensions.push(new Runtime.Extension(this, extensions[i]));
this._loaded = false;
+
+ // FIXME: This is a temp workaround to avoid core module loading attempts in the release mode.
+ // It should be removed when the new application loader is implemented.
+ if (this._manager._coreModules.hasOwnProperty(this._name))
+ this._loaded = true;
}
Runtime.Module.prototype = {
@@ -554,10 +559,7 @@ Runtime.Module.prototype = {
this._manager.loadModule(dependencies[i]);
if (this._descriptor.scripts) {
if (Runtime.isReleaseMode()) {
- // FIXME: This is a temp workaround to avoid core module loading attempts in the release mode.
- // It should be removed when the new application loader is implemented.
- if (!this._manager._coreModules.hasOwnProperty(this._name))
- loadScript(this._name + ".js");
+ loadScript(this._name + ".js");
} else {
var scripts = this._descriptor.scripts;
for (var i = 0; i < scripts.length; ++i)
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698