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

Unified Diff: third_party/WebKit/LayoutTests/http/tests/inspector/workspace-test.js

Issue 2122353002: [DevTools] Make resource tree model optional (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebased Created 4 years, 5 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/LayoutTests/http/tests/inspector/workspace-test.js
diff --git a/third_party/WebKit/LayoutTests/http/tests/inspector/workspace-test.js b/third_party/WebKit/LayoutTests/http/tests/inspector/workspace-test.js
index 6b7c24cf1b702f8c55abdfcb95f3e456073b0741..b775bd7106ab9012ef32e4ea284b9f663c01c22b 100644
--- a/third_party/WebKit/LayoutTests/http/tests/inspector/workspace-test.js
+++ b/third_party/WebKit/LayoutTests/http/tests/inspector/workspace-test.js
@@ -51,7 +51,7 @@ InspectorTest.createMockTarget = function(id, debuggerModelConstructor, capabili
this.debuggerModel = debuggerModelConstructor ? new debuggerModelConstructor(this) : new WebInspector.DebuggerModel(this);
this._modelByConstructor.set(WebInspector.DebuggerModel, this.debuggerModel);
this.domModel = new WebInspector.DOMModel(this);
- this.cssModel = new WebInspector.CSSModel(this);
+ this.cssModel = new WebInspector.CSSModel(this, this.domModel, this.resourceTreeModel);
}
MockTarget.prototype = {

Powered by Google App Engine
This is Rietveld 408576698