| Index: Source/devtools/front_end/sdk/CPUProfilerModel.js
|
| diff --git a/Source/devtools/front_end/sdk/CPUProfilerModel.js b/Source/devtools/front_end/sdk/CPUProfilerModel.js
|
| index d14650547ce595c067c8fb7d287e420b8f54c29e..27e260ee4e1f6d322365550e9b209fce5c8d5dc8 100644
|
| --- a/Source/devtools/front_end/sdk/CPUProfilerModel.js
|
| +++ b/Source/devtools/front_end/sdk/CPUProfilerModel.js
|
| @@ -28,13 +28,13 @@
|
|
|
| /**
|
| * @constructor
|
| - * @extends {WebInspector.SDKObject}
|
| + * @extends {WebInspector.SDKModel}
|
| * @param {!WebInspector.Target} target
|
| * @implements {ProfilerAgent.Dispatcher}
|
| */
|
| WebInspector.CPUProfilerModel = function(target)
|
| {
|
| - WebInspector.SDKObject.call(this, target);
|
| + WebInspector.SDKModel.call(this, WebInspector.CPUProfilerModel, target);
|
| this._isRecording = false;
|
| target.registerProfilerDispatcher(this);
|
| target.profilerAgent().enable();
|
| @@ -122,7 +122,7 @@ WebInspector.CPUProfilerModel.prototype = {
|
| },
|
|
|
|
|
| - __proto__: WebInspector.SDKObject.prototype
|
| + __proto__: WebInspector.SDKModel.prototype
|
| }
|
|
|
| /**
|
|
|