| Index: third_party/WebKit/Source/devtools/front_end/sdk/SubTargetsManager.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/sdk/SubTargetsManager.js b/third_party/WebKit/Source/devtools/front_end/sdk/SubTargetsManager.js
|
| index ee930caac609bf1c650ac8a3caad6b0bf5a8673a..3fdf12b396d3ad1615d14f92c441e01737cdaa0d 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/sdk/SubTargetsManager.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/sdk/SubTargetsManager.js
|
| @@ -172,8 +172,8 @@ SDK.SubTargetsManager = class extends SDK.SDKModel {
|
|
|
| /**
|
| * @param {string} targetId
|
| - * @param {!InspectorBackendClass.Connection.Params} params
|
| - * @return {!InspectorBackendClass.Connection}
|
| + * @param {!Protocol.InspectorBackend.Connection.Params} params
|
| + * @return {!Protocol.InspectorBackend.Connection}
|
| */
|
| _createConnection(targetId, params) {
|
| var connection = new SDK.SubTargetConnection(this._agent, targetId, params);
|
| @@ -317,14 +317,14 @@ SDK.SubTargetsDispatcher = class {
|
| };
|
|
|
| /**
|
| - * @implements {InspectorBackendClass.Connection}
|
| + * @implements {Protocol.InspectorBackend.Connection}
|
| * @unrestricted
|
| */
|
| SDK.SubTargetConnection = class {
|
| /**
|
| * @param {!Protocol.TargetAgent} agent
|
| * @param {string} targetId
|
| - * @param {!InspectorBackendClass.Connection.Params} params
|
| + * @param {!Protocol.InspectorBackend.Connection.Params} params
|
| */
|
| constructor(agent, targetId, params) {
|
| this._agent = agent;
|
|
|