Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1008)

Unified Diff: Source/devtools/front_end/sdk/LiveEditSupport.js

Issue 369853002: DevTools: Rename TargetAwareObject into SDKObject (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebase on master Created 6 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/devtools/front_end/sdk/LayerTreeModel.js ('k') | Source/devtools/front_end/sdk/NetworkLog.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
}
/**
« no previous file with comments | « Source/devtools/front_end/sdk/LayerTreeModel.js ('k') | Source/devtools/front_end/sdk/NetworkLog.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698