| Index: Source/devtools/front_end/sdk/LiveEditSupport.js
|
| diff --git a/Source/devtools/front_end/sdk/LiveEditSupport.js b/Source/devtools/front_end/sdk/LiveEditSupport.js
|
| index 2eeefd39a6b84e553795d86fc30992c5c3259019..e26e8571ec2ebd0a7a26c0d1690f13d21199f973 100644
|
| --- a/Source/devtools/front_end/sdk/LiveEditSupport.js
|
| +++ b/Source/devtools/front_end/sdk/LiveEditSupport.js
|
| @@ -30,13 +30,13 @@
|
|
|
| /**
|
| * @constructor
|
| - * @extends {WebInspector.TargetAware}
|
| + * @extends {WebInspector.SDKObject}
|
| * @param {!WebInspector.Target} target
|
| * @param {!WebInspector.Workspace} workspace
|
| */
|
| WebInspector.LiveEditSupport = function(target, workspace)
|
| {
|
| - WebInspector.TargetAware.call(this, target);
|
| + WebInspector.SDKObject.call(this, target);
|
| this._workspace = workspace;
|
| this._projectId = "liveedit:" + target.id();
|
| this._projectDelegate = new WebInspector.DebuggerProjectDelegate(workspace, this._projectId, WebInspector.projectTypes.LiveEdit);
|
| @@ -106,7 +106,7 @@ WebInspector.LiveEditSupport.prototype = {
|
| }
|
| },
|
|
|
| - __proto__: WebInspector.TargetAware.prototype
|
| + __proto__: WebInspector.SDKObject.prototype
|
| }
|
|
|
| /**
|
|
|