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

Unified Diff: third_party/WebKit/Source/devtools/front_end/components/HandlerRegistry.js

Issue 2501883002: DevTools: kill Bindings.NetworkMapping (Closed)
Patch Set: rebaseline Created 4 years, 1 month 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/components/HandlerRegistry.js
diff --git a/third_party/WebKit/Source/devtools/front_end/components/HandlerRegistry.js b/third_party/WebKit/Source/devtools/front_end/components/HandlerRegistry.js
index 7c8b7e202477a05535e1ee8ac0adea31e52ad2c8..b8b20f9d943ee7c4a6823903a11c6274b32fcac8 100644
--- a/third_party/WebKit/Source/devtools/front_end/components/HandlerRegistry.js
+++ b/third_party/WebKit/Source/devtools/front_end/components/HandlerRegistry.js
@@ -173,7 +173,7 @@ Components.HandlerRegistry = class extends Common.Object {
var resourceURL = uiLocation ? uiLocation.uiSourceCode.contentURL() : anchorElement.href;
var uiSourceCode = uiLocation ?
uiLocation.uiSourceCode :
- (resourceURL ? Bindings.networkMapping.uiSourceCodeForURLForAnyTarget(resourceURL) : null);
+ (resourceURL ? Workspace.workspace.uiSourceCodeForURL(resourceURL) : null);
function open() {
Common.Revealer.reveal(uiSourceCode);
}

Powered by Google App Engine
This is Rietveld 408576698