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

Unified Diff: third_party/WebKit/LayoutTests/inspector/sources/debugger-breakpoints/nodejs-set-breakpoint.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/nodejs-set-breakpoint.html
diff --git a/third_party/WebKit/LayoutTests/inspector/sources/debugger-breakpoints/nodejs-set-breakpoint.html b/third_party/WebKit/LayoutTests/inspector/sources/debugger-breakpoints/nodejs-set-breakpoint.html
index 12378b967c5e9b9fba8b652fadfcffa441b8e341..10d159e7ffc3ec6c648d2dda0d7c724eb19c5be5 100644
--- a/third_party/WebKit/LayoutTests/inspector/sources/debugger-breakpoints/nodejs-set-breakpoint.html
+++ b/third_party/WebKit/LayoutTests/inspector/sources/debugger-breakpoints/nodejs-set-breakpoint.html
@@ -6,7 +6,7 @@
<script>
function test()
{
- WebInspector.targetManager.mainTarget().setIsNodeJSForTest();
+ SDK.targetManager.mainTarget().setIsNodeJSForTest();
InspectorTest.startDebuggerTest();
var functionText = "function foobar() { \nconsole.log('foobar execute!');\n}";
@@ -17,7 +17,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, 1, "", true);
}

Powered by Google App Engine
This is Rietveld 408576698