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

Unified Diff: third_party/WebKit/LayoutTests/inspector/sources/debugger/debugger-disable-enable.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/debugger-disable-enable.html
diff --git a/third_party/WebKit/LayoutTests/inspector/sources/debugger/debugger-disable-enable.html b/third_party/WebKit/LayoutTests/inspector/sources/debugger/debugger-disable-enable.html
index afc424039589bc2f40147dff308e2b3770845a84..61106d631c78ab8cbe42ba7c71b2a53f8a6f84d9 100644
--- a/third_party/WebKit/LayoutTests/inspector/sources/debugger/debugger-disable-enable.html
+++ b/third_party/WebKit/LayoutTests/inspector/sources/debugger/debugger-disable-enable.html
@@ -24,7 +24,7 @@ var test = function()
{
InspectorTest.addResult("Main resource was shown.");
InspectorTest.setBreakpoint(sourceFrame, 8, "", true);
- InspectorTest.debuggerModel.addEventListener(WebInspector.DebuggerModel.Events.DebuggerWasDisabled, step3, this);
+ InspectorTest.debuggerModel.addEventListener(SDK.DebuggerModel.Events.DebuggerWasDisabled, step3, this);
InspectorTest.debuggerModel.disableDebugger();
}
@@ -38,7 +38,7 @@ var test = function()
function step4()
{
InspectorTest.addResult("function evaluated without a pause on the breakpoint.");
- InspectorTest.debuggerModel.addEventListener(WebInspector.DebuggerModel.Events.DebuggerWasEnabled, step5, this);
+ InspectorTest.debuggerModel.addEventListener(SDK.DebuggerModel.Events.DebuggerWasEnabled, step5, this);
InspectorTest.debuggerModel.enableDebugger();
}

Powered by Google App Engine
This is Rietveld 408576698