| Index: Source/devtools/front_end/sdk/TimelineManager.js
|
| diff --git a/Source/devtools/front_end/sdk/TimelineManager.js b/Source/devtools/front_end/sdk/TimelineManager.js
|
| index 05f5f5fd18f44f62049a1bbf3299d112150baaa1..f3f51f12e0af923052e30baf9cfd479fa9071545 100644
|
| --- a/Source/devtools/front_end/sdk/TimelineManager.js
|
| +++ b/Source/devtools/front_end/sdk/TimelineManager.js
|
| @@ -30,12 +30,12 @@
|
|
|
| /**
|
| * @constructor
|
| - * @extends {WebInspector.SDKObject}
|
| + * @extends {WebInspector.SDKModel}
|
| * @param {!WebInspector.Target} target
|
| */
|
| WebInspector.TimelineManager = function(target)
|
| {
|
| - WebInspector.SDKObject.call(this, target);
|
| + WebInspector.SDKModel.call(this, WebInspector.TimelineManager, target);
|
| this._dispatcher = new WebInspector.TimelineDispatcher(this);
|
| this._enablementCount = 0;
|
| this._jsProfilerStarted = false;
|
| @@ -160,7 +160,7 @@ WebInspector.TimelineManager.prototype = {
|
| }
|
| },
|
|
|
| - __proto__: WebInspector.SDKObject.prototype
|
| + __proto__: WebInspector.SDKModel.prototype
|
| }
|
|
|
| /**
|
|
|