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

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

Issue 2453673002: [DevTools] Scope common protocol infrastructure under Protocol namespace in a separate module. (Closed)
Patch Set: Created 4 years, 2 months 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 b0750a35c3a56ec8735a6f22f0e9e52b95a033cc..6922b8b017fea59196e30055b4490dd9f979e4bb 100644
--- a/third_party/WebKit/Source/devtools/front_end/sdk/SubTargetsManager.js
+++ b/third_party/WebKit/Source/devtools/front_end/sdk/SubTargetsManager.js
@@ -173,8 +173,8 @@ WebInspector.SubTargetsManager.prototype = {
/**
* @param {string} targetId
- * @param {!InspectorBackendClass.Connection.Params} params
- * @return {!InspectorBackendClass.Connection}
+ * @param {!Protocol.Connection.Params} params
+ * @return {!Protocol.Connection}
*/
_createConnection: function(targetId, params)
{
@@ -290,10 +290,10 @@ WebInspector.SubTargetsDispatcher.prototype = {
/**
* @constructor
- * @implements {InspectorBackendClass.Connection}
+ * @implements {Protocol.Connection}
* @param {!Protocol.TargetAgent} agent
* @param {string} targetId
- * @param {!InspectorBackendClass.Connection.Params} params
+ * @param {!Protocol.Connection.Params} params
*/
WebInspector.SubTargetConnection = function(agent, targetId, params)
{

Powered by Google App Engine
This is Rietveld 408576698