| Index: third_party/WebKit/Source/devtools/front_end/sources/SourcesPanel.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/sources/SourcesPanel.js b/third_party/WebKit/Source/devtools/front_end/sources/SourcesPanel.js
|
| index f651f21cd178dbd1c6e1ce9141179402d4ef8e55..a1210047ff25ccb7010ef14b2efd238be2bd04e7 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/sources/SourcesPanel.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/sources/SourcesPanel.js
|
| @@ -850,7 +850,7 @@ WebInspector.SourcesPanel.prototype = {
|
| {
|
| if (!networkUISourceCode)
|
| return;
|
| - this._networkMapping.addMapping(networkUISourceCode, uiSourceCode, WebInspector.fileSystemWorkspaceBinding);
|
| + this._networkMapping.addMapping(networkUISourceCode, uiSourceCode);
|
| this._suggestReload();
|
| }
|
| },
|
| @@ -870,7 +870,7 @@ WebInspector.SourcesPanel.prototype = {
|
| {
|
| if (!uiSourceCode)
|
| return;
|
| - this._networkMapping.addMapping(networkUISourceCode, uiSourceCode, WebInspector.fileSystemWorkspaceBinding);
|
| + this._networkMapping.addMapping(networkUISourceCode, uiSourceCode);
|
| this._suggestReload();
|
| }
|
| },
|
|
|