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

Unified Diff: third_party/WebKit/Source/devtools/front_end/bindings/CSSWorkspaceBinding.js

Issue 2869293002: DevTools: make CompilerScriptMapping / SASSSourceMapping manage UISourceCodes (Closed)
Patch Set: address comments Created 3 years, 7 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/bindings/CSSWorkspaceBinding.js
diff --git a/third_party/WebKit/Source/devtools/front_end/bindings/CSSWorkspaceBinding.js b/third_party/WebKit/Source/devtools/front_end/bindings/CSSWorkspaceBinding.js
index 7424bd41d762a1a0e9dc5ee211d1bfabf37baef6..f0278e20d4ea23da65b02ff4a73ec8cf2848d955 100644
--- a/third_party/WebKit/Source/devtools/front_end/bindings/CSSWorkspaceBinding.js
+++ b/third_party/WebKit/Source/devtools/front_end/bindings/CSSWorkspaceBinding.js
@@ -147,8 +147,7 @@ Bindings.CSSWorkspaceBinding.ModelInfo = class {
this._stylesSourceMapping = new Bindings.StylesSourceMapping(cssModel, workspace);
var sourceMapManager = cssModel.sourceMapManager();
- this._sassSourceMapping = new Bindings.SASSSourceMapping(
- sourceMapManager, workspace, Bindings.NetworkProject.forTarget(cssModel.target()));
+ this._sassSourceMapping = new Bindings.SASSSourceMapping(cssModel.target(), sourceMapManager, workspace);
/** @type {!Multimap<!SDK.CSSStyleSheetHeader, !Bindings.CSSWorkspaceBinding.LiveLocation>} */
this._locations = new Multimap();

Powered by Google App Engine
This is Rietveld 408576698