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

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

Issue 310463003: DevTools: introduce TargetBreakpoints as a presentation of breakpoint and its state within target (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Address vsevik's comments Created 6 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: LayoutTests/inspector/sources/debugger/live-edit-breakpoints.html
diff --git a/LayoutTests/inspector/sources/debugger/live-edit-breakpoints.html b/LayoutTests/inspector/sources/debugger/live-edit-breakpoints.html
index 5ddafb46c74b31e46995bbd83692bcba9f536119..8362ccfed7b4063c17f6444845da08312c74bda1 100644
--- a/LayoutTests/inspector/sources/debugger/live-edit-breakpoints.html
+++ b/LayoutTests/inspector/sources/debugger/live-edit-breakpoints.html
@@ -87,7 +87,7 @@ function test()
InspectorTest.addSniffer(javaScriptSourceFrame._textEditor.__proto__, "removeBreakpoint", removeBreakpointSniffer, true);
InspectorTest.addResult("Setting breakpoint:");
- InspectorTest.addSniffer(WebInspector.BreakpointManager.Breakpoint.prototype, "_addResolvedLocation", breakpointResolved);
+ InspectorTest.addSniffer(WebInspector.BreakpointManager.TargetBreakpoint.prototype, "_addResolvedLocation", breakpointResolved);
InspectorTest.setBreakpoint(sourceFrame, 2, "", true);
}
@@ -111,7 +111,7 @@ function test()
dumpBreakpointStorageAndLocations();
InspectorTest.addResult("Undoing source editing:");
- InspectorTest.addSniffer(WebInspector.BreakpointManager.Breakpoint.prototype, "_addResolvedLocation", breakpointResolvedAgain);
+ InspectorTest.addSniffer(WebInspector.BreakpointManager.TargetBreakpoint.prototype, "_addResolvedLocation", breakpointResolvedAgain);
InspectorTest.undoSourceEditing(javaScriptSourceFrame);
}
@@ -138,7 +138,7 @@ function test()
uiSourceCode = sourceFrame._uiSourceCode;
InspectorTest.addResult("Setting breakpoint:");
- InspectorTest.addSniffer(WebInspector.BreakpointManager.Breakpoint.prototype, "_addResolvedLocation", breakpointResolved);
+ InspectorTest.addSniffer(WebInspector.BreakpointManager.TargetBreakpoint.prototype, "_addResolvedLocation", breakpointResolved);
InspectorTest.setBreakpoint(sourceFrame, 2, "", true);
}
@@ -162,7 +162,7 @@ function test()
dumpBreakpointStorageAndLocations();
InspectorTest.addResult("Committing edited source:");
- InspectorTest.addSniffer(WebInspector.BreakpointManager.Breakpoint.prototype, "_addResolvedLocation", breakpointResolvedAgain);
+ InspectorTest.addSniffer(WebInspector.BreakpointManager.TargetBreakpoint.prototype, "_addResolvedLocation", breakpointResolvedAgain);
InspectorTest.commitSource(javaScriptSourceFrame);
}
@@ -189,7 +189,7 @@ function test()
uiSourceCode = sourceFrame._uiSourceCode;
InspectorTest.addResult("Setting breakpoint:");
- InspectorTest.addSniffer(WebInspector.BreakpointManager.Breakpoint.prototype, "_addResolvedLocation", breakpointResolved);
+ InspectorTest.addSniffer(WebInspector.BreakpointManager.TargetBreakpoint.prototype, "_addResolvedLocation", breakpointResolved);
InspectorTest.setBreakpoint(sourceFrame, 2, "", true);
}
@@ -226,7 +226,7 @@ function test()
dumpBreakpointStorageAndLocations();
InspectorTest.addResult("Committing edited source again:");
- InspectorTest.addSniffer(WebInspector.BreakpointManager.Breakpoint.prototype, "_addResolvedLocation", breakpointResolvedAgain);
+ InspectorTest.addSniffer(WebInspector.BreakpointManager.TargetBreakpoint.prototype, "_addResolvedLocation", breakpointResolvedAgain);
InspectorTest.commitSource(javaScriptSourceFrame);
}
@@ -253,7 +253,7 @@ function test()
uiSourceCode = sourceFrame._uiSourceCode;
InspectorTest.addResult("Setting breakpoint:");
- InspectorTest.addSniffer(WebInspector.BreakpointManager.Breakpoint.prototype, "_addResolvedLocation", breakpointResolved);
+ InspectorTest.addSniffer(WebInspector.BreakpointManager.TargetBreakpoint.prototype, "_addResolvedLocation", breakpointResolved);
InspectorTest.setBreakpoint(sourceFrame, 2, "", true);
}
@@ -290,7 +290,7 @@ function test()
dumpBreakpointStorageAndLocations();
InspectorTest.addResult("Committing edited source again:");
- InspectorTest.addSniffer(WebInspector.BreakpointManager.Breakpoint.prototype, "_addResolvedLocation", breakpointResolvedAgain);
+ InspectorTest.addSniffer(WebInspector.BreakpointManager.TargetBreakpoint.prototype, "_addResolvedLocation", breakpointResolvedAgain);
InspectorTest.commitSource(javaScriptSourceFrame);
}
@@ -331,7 +331,7 @@ function test()
uiSourceCode = sourceFrame._uiSourceCode;
InspectorTest.addResult("Setting breakpoint:");
- InspectorTest.addSniffer(WebInspector.BreakpointManager.Breakpoint.prototype, "_addResolvedLocation", breakpointResolved);
+ InspectorTest.addSniffer(WebInspector.BreakpointManager.TargetBreakpoint.prototype, "_addResolvedLocation", breakpointResolved);
InspectorTest.setBreakpoint(sourceFrame, 2, "", true);
}
@@ -393,7 +393,7 @@ function test()
uiSourceCode = sourceFrame._uiSourceCode;
InspectorTest.addResult("Setting breakpoint:");
- InspectorTest.addSniffer(WebInspector.BreakpointManager.Breakpoint.prototype, "_addResolvedLocation", breakpointResolved);
+ InspectorTest.addSniffer(WebInspector.BreakpointManager.TargetBreakpoint.prototype, "_addResolvedLocation", breakpointResolved);
InspectorTest.setBreakpoint(sourceFrame, 2, "", true);
}

Powered by Google App Engine
This is Rietveld 408576698