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

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

Issue 2109813003: [DevTools] No NetworkManager and NetworkLog for v8only mode (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Addressing code review comments 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
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/http/tests/inspector/network/network-choose-preview-view.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/LayoutTests/http/tests/inspector/inspector-test.js
diff --git a/third_party/WebKit/LayoutTests/http/tests/inspector/inspector-test.js b/third_party/WebKit/LayoutTests/http/tests/inspector/inspector-test.js
index f0dc4d7e5977c7ca6667f80f1a6eea81a1b85ded..1478546e64d4858cadf134d392f4f73c5df6b34e 100644
--- a/third_party/WebKit/LayoutTests/http/tests/inspector/inspector-test.js
+++ b/third_party/WebKit/LayoutTests/http/tests/inspector/inspector-test.js
@@ -971,9 +971,9 @@ WebInspector.targetManager.observeTargets({
InspectorTest.WorkerAgent = target.workerAgent();
InspectorTest.consoleModel = target.consoleModel;
- InspectorTest.networkManager = target.networkManager;
+ InspectorTest.networkManager = WebInspector.NetworkManager.fromTarget(target);
InspectorTest.resourceTreeModel = target.resourceTreeModel;
- InspectorTest.networkLog = target.networkLog;
+ InspectorTest.networkLog = WebInspector.NetworkLog.fromTarget(target);
InspectorTest.debuggerModel = WebInspector.DebuggerModel.fromTarget(target);
InspectorTest.runtimeModel = target.runtimeModel;
InspectorTest.domModel = WebInspector.DOMModel.fromTarget(target);
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/http/tests/inspector/network/network-choose-preview-view.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698