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

Unified Diff: third_party/WebKit/LayoutTests/inspector/tracing/timeline-misc/timeline-auto-record.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/tracing/timeline-misc/timeline-auto-record.html
diff --git a/third_party/WebKit/LayoutTests/inspector/tracing/timeline-misc/timeline-auto-record.html b/third_party/WebKit/LayoutTests/inspector/tracing/timeline-misc/timeline-auto-record.html
index 45b1c4819f0b227af0105e5133dc8441066c6f95..8067445f4b624196c315a912355e9fed92b2a887 100644
--- a/third_party/WebKit/LayoutTests/inspector/tracing/timeline-misc/timeline-auto-record.html
+++ b/third_party/WebKit/LayoutTests/inspector/tracing/timeline-misc/timeline-auto-record.html
@@ -7,13 +7,13 @@
function test()
{
- var panel = WebInspector.panels.timeline;
+ var panel = UI.panels.timeline;
var callbackBarrier = new CallbackBarrier();
InspectorTest.addSniffer(panel, "recordingStarted", recordingStarted);
InspectorTest.addSniffer(panel, "loadingComplete", callbackBarrier.createCallback());
- WebInspector.viewManager.showView("console");
+ UI.viewManager.showView("console");
InspectorTest.runWhenPageLoads(step1);
InspectorTest.addResult("Reloading page on console panel");
panel._millisecondsToRecordAfterLoadEvent = 1;
@@ -21,7 +21,7 @@ function test()
function step1()
{
- WebInspector.viewManager.showView("timeline");
+ UI.viewManager.showView("timeline");
InspectorTest.runWhenPageLoads(callbackBarrier.createCallback());
callbackBarrier.callWhenDone(recordingStopped);
InspectorTest.addResult("Reloading page on timeline panel");

Powered by Google App Engine
This is Rietveld 408576698