Commit cd58f29b authored by apavlov@chromium.org's avatar apavlov@chromium.org

DevTools: Enable devtools extensions support in the worker frontend

R=pfeldman@chromium.org, pfeldman, vsevik
BUG=403087

Review URL: https://codereview.chromium.org/475713002

git-svn-id: svn://svn.chromium.org/blink/trunk@180252 bbb929c8-8fbe-4397-9dbb-9b2b20218538
parent f5f75db1
...@@ -192,7 +192,7 @@ WebInspector.Main.prototype = { ...@@ -192,7 +192,7 @@ WebInspector.Main.prototype = {
if (WebInspector.experimentsSettings.documentation.isEnabled()) if (WebInspector.experimentsSettings.documentation.isEnabled())
configuration.push("documentation"); configuration.push("documentation");
if (WebInspector.isWorkerFrontend()) if (WebInspector.isWorkerFrontend())
configuration = ["main", "sources", "timeline", "profiler", "console", "source_frame"]; configuration = ["main", "sources", "timeline", "profiler", "console", "source_frame", "extensions"];
self.runtime.registerModules(configuration); self.runtime.registerModules(configuration);
}, },
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment