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

Unified Diff: third_party/WebKit/LayoutTests/inspector/sources/debugger-breakpoints/breakpoint-manager-listeners-count.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/breakpoint-manager-listeners-count.html
diff --git a/third_party/WebKit/LayoutTests/inspector/sources/debugger-breakpoints/breakpoint-manager-listeners-count.html b/third_party/WebKit/LayoutTests/inspector/sources/debugger-breakpoints/breakpoint-manager-listeners-count.html
index 0dc8d4b55b881ce6ebf47c65cb8e14d3c2e876a9..3a9efa1e7ae489b4667a042531c4c2bb63d646a5 100644
--- a/third_party/WebKit/LayoutTests/inspector/sources/debugger-breakpoints/breakpoint-manager-listeners-count.html
+++ b/third_party/WebKit/LayoutTests/inspector/sources/debugger-breakpoints/breakpoint-manager-listeners-count.html
@@ -10,7 +10,7 @@ function test()
InspectorTest.runDebuggerTestSuite([
function testSourceFramesCount(next)
{
- var panel = WebInspector.panels.sources;
+ var panel = UI.panels.sources;
var sourceFrameCount = 0;
InspectorTest.showScriptSource("script1.js", didShowScriptSources);
@@ -27,7 +27,7 @@ function test()
function didShowScriptSourceAgain()
{
- var listeners = WebInspector.breakpointManager._listeners.get(WebInspector.BreakpointManager.Events.BreakpointAdded);
+ var listeners = Bindings.breakpointManager._listeners.get(Bindings.BreakpointManager.Events.BreakpointAdded);
// There should be 3 breakpoint-added event listeners:
// - BreakpointsSidebarPane
// - 2 shown tabs
@@ -35,7 +35,7 @@ function test()
function dumpListener(listener)
{
- if (!(listener.thisObject instanceof WebInspector.SourceFrame))
+ if (!(listener.thisObject instanceof SourceFrame.SourceFrame))
return;
var sourceFrame = listener.thisObject;
InspectorTest.addResult(" " + sourceFrame._uiSourceCode.name());

Powered by Google App Engine
This is Rietveld 408576698