Commit 181c7ad5 authored by dgozman's avatar dgozman Committed by Commit bot

[DevTools] Turn remote modules into local with debug_devtools.

Currently, it's impossible to work on remote module as it tries to load source from the cloud.

BUG=none

Review-Url: https://codereview.chromium.org/2324633002
Cr-Commit-Position: refs/heads/master@{#417158}
parent 02343c66
......@@ -786,7 +786,7 @@ Runtime.Module.prototype = {
*/
_remoteBase: function()
{
return this._descriptor.remote && Runtime._remoteBase || undefined;
return !Runtime.queryParam("debugFrontend") && this._descriptor.remote && Runtime._remoteBase || undefined;
},
/**
......
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