| 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);
|
| }
|
|
|