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); |
} |