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

Unified Diff: third_party/WebKit/Source/devtools/front_end/sources/SourcesPanel.js

Issue 1363993007: DevTools: remove UISourceCode.networkURL (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebaselined Created 5 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
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();
}
},

Powered by Google App Engine
This is Rietveld 408576698