| Index: third_party/WebKit/Source/devtools/front_end/sdk/Target.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/sdk/Target.js b/third_party/WebKit/Source/devtools/front_end/sdk/Target.js
|
| index 82f9ee07038be1424c800846418a946a9eba8b53..3c37163d2f11ba20893439590bf8cbf07b6e4760 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/sdk/Target.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/sdk/Target.js
|
| @@ -27,7 +27,7 @@ WebInspector.Target = function(targetManager, name, capabilitiesMask, connection
|
|
|
| /** @type {!Map.<!Function, !WebInspector.SDKModel>} */
|
| this._modelByConstructor = new Map();
|
| -}
|
| +};
|
|
|
| /**
|
| * @enum {number}
|
| @@ -232,7 +232,7 @@ WebInspector.Target.prototype = {
|
| },
|
|
|
| __proto__: Protocol.Agents.prototype
|
| -}
|
| +};
|
|
|
| /**
|
| * @constructor
|
| @@ -243,7 +243,7 @@ WebInspector.SDKObject = function(target)
|
| {
|
| WebInspector.Object.call(this);
|
| this._target = target;
|
| -}
|
| +};
|
|
|
| WebInspector.SDKObject.prototype = {
|
| /**
|
| @@ -255,7 +255,7 @@ WebInspector.SDKObject.prototype = {
|
| },
|
|
|
| __proto__: WebInspector.Object.prototype
|
| -}
|
| +};
|
|
|
| /**
|
| * @constructor
|
| @@ -267,7 +267,7 @@ WebInspector.SDKModel = function(modelClass, target)
|
| {
|
| WebInspector.SDKObject.call(this, target);
|
| target._modelByConstructor.set(modelClass, this);
|
| -}
|
| +};
|
|
|
| WebInspector.SDKModel.prototype = {
|
| /**
|
| @@ -300,4 +300,4 @@ WebInspector.SDKModel.prototype = {
|
| },
|
|
|
| __proto__: WebInspector.SDKObject.prototype
|
| -}
|
| +};
|
|
|