Index: Source/devtools/front_end/sdk/Linkifier.js |
diff --git a/Source/devtools/front_end/sdk/Linkifier.js b/Source/devtools/front_end/sdk/Linkifier.js |
index 59cc1e2e29d59e5d8d1619031679a1083fdaeeaa..ecdebf434ca64d75ad6cec3b3787c059c351aeee 100644 |
--- a/Source/devtools/front_end/sdk/Linkifier.js |
+++ b/Source/devtools/front_end/sdk/Linkifier.js |
@@ -158,7 +158,7 @@ WebInspector.Linkifier.prototype = { |
return fallbackAnchor; |
var anchor = this._createAnchor(classes); |
- var liveLocation = rawLocation.createLiveLocation(this._updateAnchor.bind(this, anchor)); |
+ var liveLocation = WebInspector.debuggerWorkspaceBinding.createLiveLocation(rawLocation, this._updateAnchor.bind(this, anchor)); |
this._liveLocationsByTarget.get(rawLocation.target()).push({anchor: anchor, location: liveLocation}); |
anchor.__fallbackAnchor = fallbackAnchor; |
return anchor; |