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

Unified Diff: third_party/WebKit/LayoutTests/inspector/sources/debugger/live-edit-breakpoints.html

Issue 2515213005: DevTools: cleanup breakpointManager after removal of NetworkMapping (Closed)
Patch Set: set a url instead of sourceFileId Created 4 years, 1 month 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/live-edit-breakpoints.html
diff --git a/third_party/WebKit/LayoutTests/inspector/sources/debugger/live-edit-breakpoints.html b/third_party/WebKit/LayoutTests/inspector/sources/debugger/live-edit-breakpoints.html
index db298e070bf60ff12925adc7213048643cfb766b..869502f0756de16cbbd926e5af37237b48a4a5f4 100644
--- a/third_party/WebKit/LayoutTests/inspector/sources/debugger/live-edit-breakpoints.html
+++ b/third_party/WebKit/LayoutTests/inspector/sources/debugger/live-edit-breakpoints.html
@@ -19,7 +19,7 @@ function test()
var breakpoints = breakpointManager._storage._setting.get();
InspectorTest.addResult(" Dumping breakpoint storage");
for (var i = 0; i < breakpoints.length; ++i)
- InspectorTest.addResult(" " + pathToFileName(breakpoints[i].sourceFileId) + ":" + breakpoints[i].lineNumber + ", enabled:" + breakpoints[i].enabled);
+ InspectorTest.addResult(" " + pathToFileName(breakpoints[i].url) + ":" + breakpoints[i].lineNumber + ", enabled:" + breakpoints[i].enabled);
locations = breakpointManager.allBreakpointLocations();
InspectorTest.addResult(" Dumping breakpoint locations");
@@ -36,7 +36,7 @@ function test()
InspectorTest.addResult(" Dumping breakpoints");
for (var i = 0; i < breakpoints.length; ++i) {
var breakpoint = breakpoints[i];
- var uiSourceCode = breakpointManager._workspace.uiSourceCode(breakpoint.projectId(), breakpoint.path());
+ var uiSourceCode = breakpointManager._workspace.uiSourceCode(breakpoint.projectId(), breakpoint.url());
var lineNumber = breakpoint.lineNumber();
var url = uiSourceCode.url();
var project = uiSourceCode.project();

Powered by Google App Engine
This is Rietveld 408576698