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

Unified Diff: third_party/WebKit/Source/core/inspector/browser_protocol.json

Issue 2408133004: [DevTools] Implement Target.setDiscoverTargets method. (Closed)
Patch Set: rebased 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/core/inspector/browser_protocol.json
diff --git a/third_party/WebKit/Source/core/inspector/browser_protocol.json b/third_party/WebKit/Source/core/inspector/browser_protocol.json
index 2293375a186e79bd676d26d088c588366fe8500f..bd91eabb7a7080501733b2400ac0951f9c9107e1 100644
--- a/third_party/WebKit/Source/core/inspector/browser_protocol.json
+++ b/third_party/WebKit/Source/core/inspector/browser_protocol.json
@@ -3328,7 +3328,7 @@
"commands": [
{
"name": "setDiscoverTargets",
- "description": "Controls whether to discover available targets and notify via <code>targetCreated/targetRemoved</code> events.",
+ "description": "Controls whether to discover available targets and notify via <code>targetCreated/targetDestroyed</code> events.",
"parameters": [
{ "name": "discover", "type": "boolean", "description": "Whether to discover available targets." }
],
@@ -3402,7 +3402,7 @@
"handlers": ["browser"]
},
{
- "name": "targetRemoved",
+ "name": "targetDestroyed",
"parameters": [
{ "name": "targetId", "$ref": "TargetID" }
],
@@ -3411,7 +3411,7 @@
{
"name": "attachedToTarget",
"parameters": [
- { "name": "targetId", "$ref": "TargetID" },
+ { "name": "targetInfo", "$ref": "TargetInfo" },
{ "name": "waitingForDebugger", "type": "boolean" }
],
"handlers": ["browser"]

Powered by Google App Engine
This is Rietveld 408576698