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

Unified Diff: third_party/WebKit/LayoutTests/inspector/sources/debugger-breakpoints/debugger-reload-breakpoints-with-source-maps.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/debugger-reload-breakpoints-with-source-maps.html
diff --git a/third_party/WebKit/LayoutTests/inspector/sources/debugger-breakpoints/debugger-reload-breakpoints-with-source-maps.html b/third_party/WebKit/LayoutTests/inspector/sources/debugger-breakpoints/debugger-reload-breakpoints-with-source-maps.html
index ca8ad0aa6165c1a7512fe009b3a155c86a1bd7b5..5d921335d4f361f0d6e9ab85cd24f4d1a295105d 100644
--- a/third_party/WebKit/LayoutTests/inspector/sources/debugger-breakpoints/debugger-reload-breakpoints-with-source-maps.html
+++ b/third_party/WebKit/LayoutTests/inspector/sources/debugger-breakpoints/debugger-reload-breakpoints-with-source-maps.html
@@ -16,7 +16,7 @@ var test = function()
function step2(sourceFrame)
{
- InspectorTest.addSniffer(WebInspector.BreakpointManager.TargetBreakpoint.prototype, "_addResolvedLocation", didSetBreakpointInDebugger, true);
+ InspectorTest.addSniffer(Bindings.BreakpointManager.TargetBreakpoint.prototype, "_addResolvedLocation", didSetBreakpointInDebugger, true);
InspectorTest.setBreakpoint(sourceFrame, 14, "", true);
InspectorTest.setBreakpoint(sourceFrame, 15, "", true);
@@ -29,7 +29,7 @@ var test = function()
if (counter)
return;
//Both breakpoints are resolved before reload
- InspectorTest.addSniffer(WebInspector.JavaScriptBreakpointsSidebarPane.prototype, "didReceiveBreakpointLineForTest", onBreakpointsReady);
+ InspectorTest.addSniffer(Sources.JavaScriptBreakpointsSidebarPane.prototype, "didReceiveBreakpointLineForTest", onBreakpointsReady);
}
function onBreakpointsReady()
@@ -42,10 +42,10 @@ var test = function()
function waitForBreakpoints()
{
var expectedBreakpointLocations = [[14, 0], [16, 4]];
- var jsBreakpoints = self.runtime.sharedInstance(WebInspector.JavaScriptBreakpointsSidebarPane);
+ var jsBreakpoints = self.runtime.sharedInstance(Sources.JavaScriptBreakpointsSidebarPane);
jsBreakpoints.didReceiveBreakpointLineForTest = function(uiSourceCode, line, column)
{
- if (WebInspector.CompilerScriptMapping.StubProjectID === uiSourceCode.project().id())
+ if (Bindings.CompilerScriptMapping.StubProjectID === uiSourceCode.project().id())
return;
if (!uiSourceCode.url().endsWith("source1.js"))
return;

Powered by Google App Engine
This is Rietveld 408576698