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

Unified Diff: third_party/WebKit/LayoutTests/inspector/sources/debugger-breakpoints/dynamic-scripts-breakpoints.html

Issue 2493373002: DevTools: rename WebInspector into modules. (Closed)
Patch Set: for bots Created 4 years, 1 month 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: 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);
}

Powered by Google App Engine
This is Rietveld 408576698