| Index: third_party/WebKit/LayoutTests/inspector/tracing/buffer-usage.html
|
| diff --git a/third_party/WebKit/LayoutTests/inspector/tracing/buffer-usage.html b/third_party/WebKit/LayoutTests/inspector/tracing/buffer-usage.html
|
| index b07a38b98269fc1e41e4a42cba2d10533bd71cad..0e2ec1a01d0e4a1f7db517e5dd8f57ed06d27a78 100644
|
| --- a/third_party/WebKit/LayoutTests/inspector/tracing/buffer-usage.html
|
| +++ b/third_party/WebKit/LayoutTests/inspector/tracing/buffer-usage.html
|
| @@ -6,12 +6,12 @@
|
|
|
| function test()
|
| {
|
| - WebInspector.TestTimelineLifecycleDelegate = function()
|
| + TestTimelineLifecycleDelegate = function()
|
| {
|
| this._hadLoadingProgress = false;
|
| }
|
|
|
| - WebInspector.TestTimelineLifecycleDelegate.prototype = {
|
| + TestTimelineLifecycleDelegate.prototype = {
|
| recordingStarted: function()
|
| {
|
| InspectorTest.addResult("TimelineLifecycleDelegate.recordingStarted");
|
| @@ -45,10 +45,10 @@ function test()
|
| InspectorTest.completeTest();
|
| },
|
|
|
| - __proto__: WebInspector.TimelineLifecycleDelegate
|
| + __proto__: Timeline.TimelineLifecycleDelegate
|
| };
|
|
|
| - var controller = new WebInspector.TimelineController(WebInspector.targetManager.mainTarget(), new WebInspector.TestTimelineLifecycleDelegate(), InspectorTest.createTracingModel());
|
| + var controller = new Timeline.TimelineController(SDK.targetManager.mainTarget(), new TestTimelineLifecycleDelegate(), InspectorTest.createTracingModel());
|
| controller.startRecording();
|
| }
|
|
|
|
|