Index: Source/devtools/front_end/sdk/StylesSourceMapping.js |
diff --git a/Source/devtools/front_end/sdk/StylesSourceMapping.js b/Source/devtools/front_end/sdk/StylesSourceMapping.js |
index 8f73d7b8d147e16a4ed5cab33bde5ea938bcd3ad..f25506924d12854681b410218b5f7818f2e5be8d 100644 |
--- a/Source/devtools/front_end/sdk/StylesSourceMapping.js |
+++ b/Source/devtools/front_end/sdk/StylesSourceMapping.js |
@@ -110,7 +110,7 @@ WebInspector.StylesSourceMapping.prototype = { |
if (!url) |
return; |
- header.pushSourceMapping(this); |
+ WebInspector.cssWorkspaceBinding.pushSourceMapping(header, this); |
var map = this._urlToHeadersByFrameId[url]; |
if (!map) { |
map = /** @type {!StringMap.<!StringMap.<!WebInspector.CSSStyleSheetHeader>>} */ (new StringMap()); |
@@ -187,7 +187,7 @@ WebInspector.StylesSourceMapping.prototype = { |
return; |
var url = uiSourceCode.url; |
this._styleFiles.put(uiSourceCode, new WebInspector.StyleFile(uiSourceCode, this)); |
- header.updateLocations(); |
+ WebInspector.cssWorkspaceBinding.updateLocations(header); |
}, |
/** |