| 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}
|
| */
|
|
|