| Index: third_party/WebKit/LayoutTests/inspector/tracing/console-timeline.html
|
| diff --git a/third_party/WebKit/LayoutTests/inspector/tracing/console-timeline.html b/third_party/WebKit/LayoutTests/inspector/tracing/console-timeline.html
|
| index edaeac3fe6b0a7441725f48ab79a3d143ccd3bae..4b7f23b8c4166876d9141d4c4ed2d39b567be593 100644
|
| --- a/third_party/WebKit/LayoutTests/inspector/tracing/console-timeline.html
|
| +++ b/third_party/WebKit/LayoutTests/inspector/tracing/console-timeline.html
|
| @@ -79,8 +79,8 @@ function startTimeline()
|
|
|
| function test()
|
| {
|
| - var panel = WebInspector.panels.timeline;
|
| - panel._model._currentTarget = WebInspector.targetManager.mainTarget();
|
| + var panel = UI.panels.timeline;
|
| + panel._model._currentTarget = SDK.targetManager.mainTarget();
|
|
|
| InspectorTest.runTestSuite([
|
| function testStartStopTimeline(next)
|
| @@ -177,9 +177,9 @@ function test()
|
| {
|
| thread.events().forEach(function(event)
|
| {
|
| - if (event.hasCategory(WebInspector.TimelineModel.Category.Console))
|
| + if (event.hasCategory(TimelineModel.TimelineModel.Category.Console))
|
| InspectorTest.addResult(event.name);
|
| - else if (event.name === WebInspector.TimelineModel.RecordType.TimeStamp)
|
| + else if (event.name === TimelineModel.TimelineModel.RecordType.TimeStamp)
|
| InspectorTest.addResult(event.args["data"]["message"]);
|
| });
|
| });
|
|
|