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

Unified Diff: third_party/WebKit/LayoutTests/inspector/sources/debugger-breakpoints/breakpoint-manager.js

Issue 2958403002: [WIP] DevTools: move UISourceCode creation into ResourceScriptMapping
Patch Set: pass everything but breakpointmanager Created 3 years, 6 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/inspector/sources/debugger-breakpoints/breakpoint-manager.js
diff --git a/third_party/WebKit/LayoutTests/inspector/sources/debugger-breakpoints/breakpoint-manager.js b/third_party/WebKit/LayoutTests/inspector/sources/debugger-breakpoints/breakpoint-manager.js
index 402c991d34366566ee43889c0e6387d826d9e986..60595e8f943c6cbf6a1ef5be23adf22c9e784208 100644
--- a/third_party/WebKit/LayoutTests/inspector/sources/debugger-breakpoints/breakpoint-manager.js
+++ b/third_party/WebKit/LayoutTests/inspector/sources/debugger-breakpoints/breakpoint-manager.js
@@ -21,7 +21,7 @@ InspectorTest.createMockTarget = function(id)
{
var capabilities = SDK.Target.Capability.AllForTests;
var target = InspectorTest.testTargetManager.createTarget("mock-target-id-" + id, "mock-target-" + id, capabilities & (~SDK.Target.Capability.JS), (params) => new SDK.StubConnection(params), null);
- InspectorTest.testNetworkProject = Bindings.NetworkProject.forTarget(target);
+ //InspectorTest.testNetworkProject = Bindings.NetworkProject.forTarget(target);
InspectorTest.testResourceMappingModelInfo = resourceMappingModelInfoForTarget(target);
target._capabilitiesMask = capabilities;
target._inspectedURL = InspectorTest.mainTarget.inspectedURL();

Powered by Google App Engine
This is Rietveld 408576698