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

Side by Side Diff: third_party/WebKit/Source/core/inspector/browser_protocol.json

Issue 2094903002: [Devtools] Fixed websocket initiators (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: More Flaky fixes Created 4 years, 5 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 unified diff | Download patch
OLDNEW
1 { 1 {
2 "version": { "major": "1", "minor": "1" }, 2 "version": { "major": "1", "minor": "1" },
3 "domains": [{ 3 "domains": [{
4 "domain": "Inspector", 4 "domain": "Inspector",
5 "hidden": true, 5 "hidden": true,
6 "types": [], 6 "types": [],
7 "commands": [ 7 "commands": [
8 { 8 {
9 "name": "enable", 9 "name": "enable",
10 "description": "Enables inspector domain notifications.", 10 "description": "Enables inspector domain notifications.",
(...skipping 1337 matching lines...) Expand 10 before | Expand all | Expand 10 after
1348 { "name": "timestamp", "$ref": "Timestamp", "description": " Timestamp." }, 1348 { "name": "timestamp", "$ref": "Timestamp", "description": " Timestamp." },
1349 { "name": "response", "$ref": "WebSocketResponse", "descript ion": "WebSocket response data." } 1349 { "name": "response", "$ref": "WebSocketResponse", "descript ion": "WebSocket response data." }
1350 ], 1350 ],
1351 "hidden": true 1351 "hidden": true
1352 }, 1352 },
1353 { 1353 {
1354 "name": "webSocketCreated", 1354 "name": "webSocketCreated",
1355 "description": "Fired upon WebSocket creation.", 1355 "description": "Fired upon WebSocket creation.",
1356 "parameters": [ 1356 "parameters": [
1357 { "name": "requestId", "$ref": "RequestId", "description": " Request identifier." }, 1357 { "name": "requestId", "$ref": "RequestId", "description": " Request identifier." },
1358 { "name": "url", "type": "string", "description": "WebSocket request URL." } 1358 { "name": "url", "type": "string", "description": "WebSocket request URL." },
1359 { "name": "initiator", "$ref": "Initiator", "optional": true , "description": "Request initiator." }
1359 ], 1360 ],
1360 "hidden": true 1361 "hidden": true
1361 }, 1362 },
1362 { 1363 {
1363 "name": "webSocketClosed", 1364 "name": "webSocketClosed",
1364 "description": "Fired when WebSocket is closed.", 1365 "description": "Fired when WebSocket is closed.",
1365 "parameters": [ 1366 "parameters": [
1366 { "name": "requestId", "$ref": "RequestId", "description": " Request identifier." }, 1367 { "name": "requestId", "$ref": "RequestId", "description": " Request identifier." },
1367 { "name": "timestamp", "$ref": "Timestamp", "description": " Timestamp." } 1368 { "name": "timestamp", "$ref": "Timestamp", "description": " Timestamp." }
1368 ], 1369 ],
(...skipping 2857 matching lines...) Expand 10 before | Expand all | Expand 10 after
4226 "description": "Dispatches protocol message from the target with given id.", 4227 "description": "Dispatches protocol message from the target with given id.",
4227 "parameters": [ 4228 "parameters": [
4228 { "name": "targetId", "$ref": "TargetID" }, 4229 { "name": "targetId", "$ref": "TargetID" },
4229 { "name": "message", "type": "string" } 4230 { "name": "message", "type": "string" }
4230 ], 4231 ],
4231 "handlers": ["browser"] 4232 "handlers": ["browser"]
4232 } 4233 }
4233 ] 4234 ]
4234 }] 4235 }]
4235 } 4236 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698