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

Unified Diff: Source/devtools/front_end/sdk/Target.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/Script.js ('k') | Source/devtools/front_end/sdk/TimelineManager.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/devtools/front_end/sdk/Target.js
diff --git a/Source/devtools/front_end/sdk/Target.js b/Source/devtools/front_end/sdk/Target.js
index 06be3cf602c648300403688824d8c1862da8c49d..2ca74fa81ab73f098e3b8763870bce1d78a8bcd4 100644
--- a/Source/devtools/front_end/sdk/Target.js
+++ b/Source/devtools/front_end/sdk/Target.js
@@ -195,35 +195,16 @@ WebInspector.Target.prototype = {
/**
* @constructor
- * @param {!WebInspector.Target} target
- */
-WebInspector.TargetAware = function(target)
-{
- this._target = target;
-}
-
-WebInspector.TargetAware.prototype = {
- /**
- * @return {!WebInspector.Target}
- */
- target: function()
- {
- return this._target;
- }
-}
-
-/**
- * @constructor
* @extends {WebInspector.Object}
* @param {!WebInspector.Target} target
*/
-WebInspector.TargetAwareObject = function(target)
+WebInspector.SDKObject = function(target)
{
WebInspector.Object.call(this);
this._target = target;
}
-WebInspector.TargetAwareObject.prototype = {
+WebInspector.SDKObject.prototype = {
/**
* @return {!WebInspector.Target}
*/
« no previous file with comments | « Source/devtools/front_end/sdk/Script.js ('k') | Source/devtools/front_end/sdk/TimelineManager.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698