| Index: Source/devtools/front_end/timeline/TracingModel.js
|
| diff --git a/Source/devtools/front_end/timeline/TracingModel.js b/Source/devtools/front_end/timeline/TracingModel.js
|
| index deb5d055f4f93741ff37c20bb99136d47262f736..0261d4ab0f0950f818222deade090011bc08ab06 100644
|
| --- a/Source/devtools/front_end/timeline/TracingModel.js
|
| +++ b/Source/devtools/front_end/timeline/TracingModel.js
|
| @@ -6,11 +6,11 @@
|
|
|
| /**
|
| * @constructor
|
| - * @extends {WebInspector.TargetAwareObject}
|
| + * @extends {WebInspector.SDKObject}
|
| */
|
| WebInspector.TracingModel = function(target)
|
| {
|
| - WebInspector.TargetAwareObject.call(this, target);
|
| + WebInspector.SDKObject.call(this, target);
|
| this.reset();
|
| this._active = false;
|
| InspectorBackend.registerTracingDispatcher(new WebInspector.TracingDispatcher(this));
|
| @@ -244,7 +244,7 @@ WebInspector.TracingModel.prototype = {
|
| return WebInspector.TracingModel.NamedObject._sort(Object.values(this._processById));
|
| },
|
|
|
| - __proto__: WebInspector.TargetAwareObject.prototype
|
| + __proto__: WebInspector.SDKObject.prototype
|
| }
|
|
|
| /**
|
|
|