| Index: third_party/WebKit/LayoutTests/inspector/sources/debugger-breakpoints/disable-breakpoints.html
|
| diff --git a/third_party/WebKit/LayoutTests/inspector/sources/debugger-breakpoints/disable-breakpoints.html b/third_party/WebKit/LayoutTests/inspector/sources/debugger-breakpoints/disable-breakpoints.html
|
| index bb0b5d5da94d369f1c80387939931edfaae4ecbd..c70db4582978efed959922c47d62b6b14cbd6d5e 100644
|
| --- a/third_party/WebKit/LayoutTests/inspector/sources/debugger-breakpoints/disable-breakpoints.html
|
| +++ b/third_party/WebKit/LayoutTests/inspector/sources/debugger-breakpoints/disable-breakpoints.html
|
| @@ -46,7 +46,7 @@ var test = function()
|
| InspectorTest.addResult("Test function finished.");
|
|
|
| InspectorTest.addResult("Disabling breakpoints...");
|
| - WebInspector.breakpointManager.setBreakpointsActive(false);
|
| + Bindings.breakpointManager.setBreakpointsActive(false);
|
|
|
| InspectorTest.addResult("Running test function again...");
|
| InspectorTest.addConsoleSniffer(testFunctionFinishedForTheSecondTime);
|
| @@ -68,7 +68,7 @@ var test = function()
|
| {
|
| currentSourceFrame = sourceFrame;
|
| InspectorTest.addResult("Enabling breakpoints...");
|
| - WebInspector.breakpointManager.setBreakpointsActive(true);
|
| + Bindings.breakpointManager.setBreakpointsActive(true);
|
|
|
| InspectorTest.addResult("Running test function...");
|
| InspectorTest.runTestFunctionAndWaitUntilPaused(didPause);
|
|
|