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

Unified Diff: third_party/WebKit/Source/devtools/front_end/sdk/SubTargetsManager.js

Issue 2600323002: DevTools: extract protocol module (Closed)
Patch Set: move inspector backend commands.js Created 4 years 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
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;

Powered by Google App Engine
This is Rietveld 408576698