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

Unified Diff: third_party/WebKit/LayoutTests/inspector/sources/debugger-breakpoints/possible-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/possible-breakpoints.html
diff --git a/third_party/WebKit/LayoutTests/inspector/sources/debugger-breakpoints/possible-breakpoints.html b/third_party/WebKit/LayoutTests/inspector/sources/debugger-breakpoints/possible-breakpoints.html
index 62d425b3bc880c4db2b809207982e04d15a169ca..578df05a9ce644ac23d0e47de519cbaa71b19c70 100644
--- a/third_party/WebKit/LayoutTests/inspector/sources/debugger-breakpoints/possible-breakpoints.html
+++ b/third_party/WebKit/LayoutTests/inspector/sources/debugger-breakpoints/possible-breakpoints.html
@@ -20,19 +20,19 @@ function test()
function didShowScriptSource(sourceFrame)
{
var uiSourceCode = sourceFrame._uiSourceCode;
- var breakpointManager = WebInspector.breakpointManager;
+ var breakpointManager = Bindings.breakpointManager;
InspectorTest.addResult("Locations for first line");
- breakpointManager.possibleBreakpoints(uiSourceCode, new WebInspector.TextRange(0, 0, 1, 0))
+ breakpointManager.possibleBreakpoints(uiSourceCode, new Common.TextRange(0, 0, 1, 0))
.then(dumpLocations)
.then(() => InspectorTest.addResult("All locations"))
- .then(() => breakpointManager.possibleBreakpoints(uiSourceCode, new WebInspector.TextRange(0, 0, 6, 0)))
+ .then(() => breakpointManager.possibleBreakpoints(uiSourceCode, new Common.TextRange(0, 0, 6, 0)))
.then(dumpLocations)
.then(() => InspectorTest.addResult("Existing location by position"))
- .then(() => breakpointManager.possibleBreakpoints(uiSourceCode, new WebInspector.TextRange(2, 31, 2, 32)))
+ .then(() => breakpointManager.possibleBreakpoints(uiSourceCode, new Common.TextRange(2, 31, 2, 32)))
.then(dumpLocations)
.then(() => InspectorTest.addResult("Not existing location by position"))
- .then(() => breakpointManager.possibleBreakpoints(uiSourceCode, new WebInspector.TextRange(2, 32, 2, 33)))
+ .then(() => breakpointManager.possibleBreakpoints(uiSourceCode, new Common.TextRange(2, 32, 2, 33)))
.then(dumpLocations)
.then(() => InspectorTest.completeDebuggerTest());
}

Powered by Google App Engine
This is Rietveld 408576698