| Index: Source/devtools/front_end/Target.js
|
| diff --git a/Source/devtools/front_end/Target.js b/Source/devtools/front_end/Target.js
|
| index 85c8ee3ad926f1d71fae08cfdf222d9d8dd07d6a..3cd2ec53c10bedc9af88eb36d6c09541170d630c 100644
|
| --- a/Source/devtools/front_end/Target.js
|
| +++ b/Source/devtools/front_end/Target.js
|
| @@ -122,6 +122,29 @@ WebInspector.TargetAware.prototype = {
|
|
|
| /**
|
| * @constructor
|
| + * @extends {WebInspector.Object}
|
| + * @param {!WebInspector.Target} target
|
| + */
|
| +WebInspector.TargetAwareObject = function(target)
|
| +{
|
| + WebInspector.Object.call(this);
|
| + this._target = target;
|
| +}
|
| +
|
| +WebInspector.TargetAwareObject.prototype = {
|
| + /**
|
| + * @return {!WebInspector.Target}
|
| + */
|
| + target: function()
|
| + {
|
| + return this._target;
|
| + },
|
| +
|
| + __proto__: WebInspector.Object.prototype
|
| +}
|
| +
|
| +/**
|
| + * @constructor
|
| */
|
| WebInspector.TargetManager = function()
|
| {
|
|
|