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

Unified Diff: third_party/WebKit/LayoutTests/inspector/sources/debugger-pause/pause-in-inline-script.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-pause/pause-in-inline-script.html
diff --git a/third_party/WebKit/LayoutTests/inspector/sources/debugger-pause/pause-in-inline-script.html b/third_party/WebKit/LayoutTests/inspector/sources/debugger-pause/pause-in-inline-script.html
index b03d4950a33c3be2ba1ed53e469a38cf59d65c2b..cc7c430eb0a846b899725d04b52bbfd21c72936b 100644
--- a/third_party/WebKit/LayoutTests/inspector/sources/debugger-pause/pause-in-inline-script.html
+++ b/third_party/WebKit/LayoutTests/inspector/sources/debugger-pause/pause-in-inline-script.html
@@ -34,7 +34,7 @@ var test = function()
InspectorTest.addResult("Did load front-end");
InspectorTest.addResult("Paused: " + !!InspectorTest.debuggerModel.debuggerPausedDetails());
InspectorTest.reloadPage(didReload.bind(this));
- InspectorTest.debuggerModel.addEventListener(WebInspector.DebuggerModel.Events.DebuggerPaused, didPauseAfterReload, this);
+ InspectorTest.debuggerModel.addEventListener(SDK.DebuggerModel.Events.DebuggerPaused, didPauseAfterReload, this);
}
function didReload()
@@ -59,7 +59,7 @@ var test = function()
return;
}
var frame = callFrames[callFrameIndex];
- var uiLocation = WebInspector.debuggerWorkspaceBinding.rawLocationToUILocation(frame.location());
+ var uiLocation = Bindings.debuggerWorkspaceBinding.rawLocationToUILocation(frame.location());
InspectorTest.showUISourceCode(uiLocation.uiSourceCode, dumpCallFrameLine);
function dumpCallFrameLine(sourceFrame)

Powered by Google App Engine
This is Rietveld 408576698