Skip to content

Commit

Permalink
bump protocol
Browse files Browse the repository at this point in the history
  • Loading branch information
devtools-bot committed Jul 20, 2017
1 parent 1d06c79 commit ab43fc2
Show file tree
Hide file tree
Showing 3 changed files with 61 additions and 17 deletions.
74 changes: 59 additions & 15 deletions _data/tot/protocol.json
Original file line number Diff line number Diff line change
Expand Up @@ -8111,6 +8111,11 @@
"id": "TargetID",
"type": "string"
},
{
"id": "SessionID",
"type": "string",
"description": "Unique identifier of attached debugging session."
},
{
"id": "BrowserContextID",
"type": "string"
Expand Down Expand Up @@ -8211,15 +8216,24 @@
},
{
"name": "sendMessageToTarget",
"description": "Sends protocol message to the target with given id.",
"description": "Sends protocol message over session with given id.",
"parameters": [
{
"name": "targetId",
"$ref": "TargetID"
},
{
"name": "message",
"type": "string"
},
{
"name": "sessionId",
"$ref": "SessionID",
"optional": true,
"description": "Identifier of the session."
},
{
"name": "targetId",
"$ref": "TargetID",
"optional": true,
"deprecated": true,
"description": "Deprecated."
}
]
},
Expand Down Expand Up @@ -8276,19 +8290,28 @@
],
"returns": [
{
"name": "success",
"type": "boolean",
"description": "Whether attach succeeded."
"name": "sessionId",
"$ref": "SessionID",
"description": "Id assigned to the session."
}
]
},
{
"name": "detachFromTarget",
"description": "Detaches from the target with given id.",
"description": "Detaches session with given id.",
"parameters": [
{
"name": "sessionId",
"$ref": "SessionID",
"optional": true,
"description": "Session to detach."
},
{
"name": "targetId",
"$ref": "TargetID"
"$ref": "TargetID",
"optional": true,
"deprecated": true,
"description": "Deprecated."
}
]
},
Expand Down Expand Up @@ -8405,6 +8428,11 @@
"name": "attachedToTarget",
"description": "Issued when attached to target because of auto-attach or <code>attachToTarget</code> command.",
"parameters": [
{
"name": "sessionId",
"$ref": "SessionID",
"description": "Identifier assigned to the session used to send/receive messages."
},
{
"name": "targetInfo",
"$ref": "TargetInfo"
Expand All @@ -8417,25 +8445,41 @@
},
{
"name": "detachedFromTarget",
"description": "Issued when detached from target for any reason (including <code>detachFromTarget</code> command).",
"description": "Issued when detached from target for any reason (including <code>detachFromTarget</code> command). Can be issued multiple times per target if multiple sessions have been attached to it.",
"parameters": [
{
"name": "sessionId",
"$ref": "SessionID",
"description": "Detached session identifier."
},
{
"name": "targetId",
"$ref": "TargetID"
"$ref": "TargetID",
"optional": true,
"deprecated": true,
"description": "Deprecated."
}
]
},
{
"name": "receivedMessageFromTarget",
"description": "Notifies about new protocol message from attached target.",
"description": "Notifies about a new protocol message received from the session (as reported in <code>attachedToTarget</code> event).",
"parameters": [
{
"name": "targetId",
"$ref": "TargetID"
"name": "sessionId",
"$ref": "SessionID",
"description": "Identifier of a session which sends a message."
},
{
"name": "message",
"type": "string"
},
{
"name": "targetId",
"$ref": "TargetID",
"optional": true,
"deprecated": true,
"description": "Deprecated."
}
]
}
Expand Down
2 changes: 1 addition & 1 deletion _versions/tot.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ <h2 class="heading">latest (tip-of-tree)</h2>

<h5 browser>Latest <a
href="https://chromium.googlesource.com/chromium/src/+log/master/third_party/WebKit/Source/core/inspector/browser_protocol.json">browser_protocol.json</a> version updated:</h5>
<code browser>Date: Wed Jul 19 04:15:25 2017 -0700
<code browser>Date: Thu Jul 20 14:15:34 2017 -0700
</code>

<h5 js>Latest <a
Expand Down
2 changes: 1 addition & 1 deletion search_index/tot.json

Large diffs are not rendered by default.

0 comments on commit ab43fc2

Please sign in to comment.