| Index: third_party/WebKit/Source/devtools/front_end/sources/SourcesView.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/sources/SourcesView.js b/third_party/WebKit/Source/devtools/front_end/sources/SourcesView.js
|
| index e43f951020befc6e56afef9e54c20d9062f0fbf0..b857a2574907eee740aee6775a6f35fbc9b917b8 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/sources/SourcesView.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/sources/SourcesView.js
|
| @@ -267,16 +267,6 @@ WebInspector.SourcesView.prototype = {
|
| if (uiSourceCode.isFromServiceProject())
|
| return;
|
| this._editorContainer.addUISourceCode(uiSourceCode);
|
| - // Replace debugger script-based uiSourceCode with a network-based one.
|
| - var currentUISourceCode = this._editorContainer.currentFile();
|
| - if (!currentUISourceCode)
|
| - return;
|
| - var networkURL = WebInspector.networkMapping.networkURL(uiSourceCode);
|
| - var currentNetworkURL = WebInspector.networkMapping.networkURL(currentUISourceCode);
|
| - if (currentUISourceCode.isFromServiceProject() && currentUISourceCode !== uiSourceCode && currentNetworkURL === networkURL && networkURL) {
|
| - this._editorContainer.showFile(uiSourceCode);
|
| - this._editorContainer.removeUISourceCode(currentUISourceCode);
|
| - }
|
| },
|
|
|
| _uiSourceCodeRemoved: function(event)
|
|
|