Index: LayoutTests/inspector/sources/debugger/breakpoint-manager.html |
diff --git a/LayoutTests/inspector/sources/debugger/breakpoint-manager.html b/LayoutTests/inspector/sources/debugger/breakpoint-manager.html |
index 37f859bb128cab20c32ae2051c0a1296fcdd2030..35194ce144aecebf9d744e5846b41b6cf20362c2 100644 |
--- a/LayoutTests/inspector/sources/debugger/breakpoint-manager.html |
+++ b/LayoutTests/inspector/sources/debugger/breakpoint-manager.html |
@@ -292,7 +292,7 @@ function test() |
InspectorTest.addResult("\n Toggling source mapping."); |
var sourceMapping = createSourceMapping(uiSourceCodeA, uiSourceCodeB); |
mockTarget.debuggerModel.pushSourceMapping(sourceMapping); |
- uiSourceCodeB.setSourceMappingForTarget(mockTarget, sourceMapping); |
+ breakpointManager._debuggerWorkspaceBinding.setSourceMapping(mockTarget, uiSourceCodeB, sourceMapping); |
InspectorTest.runAfterPendingBreakpointUpdates(breakpointManager, breakpointActionsPerformedBeforeReload.bind(this)); |
function breakpointActionsPerformedBeforeReload() |
@@ -310,7 +310,7 @@ function test() |
InspectorTest.addResult("\n Toggling source mapping."); |
var sourceMapping = createSourceMapping(uiSourceCodeA, uiSourceCodeB); |
mockTarget.debuggerModel.pushSourceMapping(sourceMapping); |
- uiSourceCodeB.setSourceMappingForTarget(mockTarget, sourceMapping); |
+ breakpointManager._debuggerWorkspaceBinding.setSourceMapping(mockTarget, uiSourceCodeB, sourceMapping); |
InspectorTest.runAfterPendingBreakpointUpdates(breakpointManager, breakpointActionsPerformed.bind(this)); |
} |
@@ -353,7 +353,6 @@ function test() |
}, |
]); |
}; |
- |
</script> |
</head> |