| Index: third_party/WebKit/LayoutTests/inspector/sources/debugger-breakpoints/dynamic-scripts-breakpoints.html
|
| diff --git a/third_party/WebKit/LayoutTests/inspector/sources/debugger-breakpoints/dynamic-scripts-breakpoints.html b/third_party/WebKit/LayoutTests/inspector/sources/debugger-breakpoints/dynamic-scripts-breakpoints.html
|
| index f8468e261b336d5c228f556ad9fbe52166abb843..f8cd2e1161068b54a8a6fa58f4d236331954728b 100644
|
| --- a/third_party/WebKit/LayoutTests/inspector/sources/debugger-breakpoints/dynamic-scripts-breakpoints.html
|
| +++ b/third_party/WebKit/LayoutTests/inspector/sources/debugger-breakpoints/dynamic-scripts-breakpoints.html
|
| @@ -17,8 +17,8 @@ foobar();
|
| <script>
|
| function test()
|
| {
|
| - WebInspector.breakpointManager._storage._breakpoints = {};
|
| - var panel = WebInspector.panels.sources;
|
| + Bindings.breakpointManager._storage._breakpoints = {};
|
| + var panel = UI.panels.sources;
|
|
|
| InspectorTest.startDebuggerTest();
|
|
|
| @@ -31,7 +31,7 @@ function test()
|
|
|
| function dumpBreakpointStorage()
|
| {
|
| - var breakpointManager = WebInspector.breakpointManager;
|
| + var breakpointManager = Bindings.breakpointManager;
|
| var breakpoints = breakpointManager._storage._setting.get();
|
| InspectorTest.addResult(" Dumping breakpoint storage");
|
| for (var i = 0; i < breakpoints.length; ++i)
|
| @@ -41,7 +41,7 @@ function test()
|
| function didShowScriptSource(sourceFrame)
|
| {
|
| InspectorTest.addResult("Setting breakpoint:");
|
| - InspectorTest.addSniffer(WebInspector.BreakpointManager.TargetBreakpoint.prototype, "_addResolvedLocation", breakpointResolved);
|
| + InspectorTest.addSniffer(Bindings.BreakpointManager.TargetBreakpoint.prototype, "_addResolvedLocation", breakpointResolved);
|
| InspectorTest.setBreakpoint(sourceFrame, 11, "", true);
|
| }
|
|
|
|
|