| 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");
|
|
|