| 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 94625e15036325ae1b19657ea26c8f7a559aaf07..306ad548bf14b06889b2f12593788c7bcad66acc 100644
|
| --- a/Source/devtools/front_end/sdk/CPUProfilerModel.js
|
| +++ b/Source/devtools/front_end/sdk/CPUProfilerModel.js
|
| @@ -28,13 +28,13 @@
|
|
|
| /**
|
| * @constructor
|
| - * @extends {WebInspector.TargetAwareObject}
|
| + * @extends {WebInspector.SDKObject}
|
| * @param {!WebInspector.Target} target
|
| * @implements {ProfilerAgent.Dispatcher}
|
| */
|
| WebInspector.CPUProfilerModel = function(target)
|
| {
|
| - WebInspector.TargetAwareObject.call(this, target);
|
| + WebInspector.SDKObject.call(this, target);
|
| this._isRecording = false;
|
| target.registerProfilerDispatcher(this);
|
| target.profilerAgent().enable();
|
| @@ -101,7 +101,7 @@ WebInspector.CPUProfilerModel.prototype = {
|
| this.dispatchEventToListeners(WebInspector.CPUProfilerModel.EventTypes.ProfileStopped);
|
| },
|
|
|
| - __proto__: WebInspector.TargetAwareObject.prototype
|
| + __proto__: WebInspector.SDKObject.prototype
|
| }
|
|
|
| /**
|
|
|