You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: json/browser_protocol.json
+57Lines changed: 57 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -16330,6 +16330,63 @@
16330
16330
}
16331
16331
]
16332
16332
},
16333
+
{
16334
+
"name": "directTCPSocketChunkSent",
16335
+
"description": "Fired when data is sent to tcp direct socket stream.",
16336
+
"experimental": true,
16337
+
"parameters": [
16338
+
{
16339
+
"name": "identifier",
16340
+
"$ref": "RequestId"
16341
+
},
16342
+
{
16343
+
"name": "data",
16344
+
"type": "string"
16345
+
},
16346
+
{
16347
+
"name": "timestamp",
16348
+
"$ref": "MonotonicTime"
16349
+
}
16350
+
]
16351
+
},
16352
+
{
16353
+
"name": "directTCPSocketChunkReceived",
16354
+
"description": "Fired when data is received from tcp direct socket stream.",
16355
+
"experimental": true,
16356
+
"parameters": [
16357
+
{
16358
+
"name": "identifier",
16359
+
"$ref": "RequestId"
16360
+
},
16361
+
{
16362
+
"name": "data",
16363
+
"type": "string"
16364
+
},
16365
+
{
16366
+
"name": "timestamp",
16367
+
"$ref": "MonotonicTime"
16368
+
}
16369
+
]
16370
+
},
16371
+
{
16372
+
"name": "directTCPSocketChunkError",
16373
+
"description": "Fired when there is an error\nwhen writing to tcp direct socket stream.\nFor example, if user writes illegal type like string\ninstead of ArrayBuffer or ArrayBufferView.\nThere's no reporting for reading, because\nwe cannot know errors on the other side.",
16374
+
"experimental": true,
16375
+
"parameters": [
16376
+
{
16377
+
"name": "identifier",
16378
+
"$ref": "RequestId"
16379
+
},
16380
+
{
16381
+
"name": "errorMessage",
16382
+
"type": "string"
16383
+
},
16384
+
{
16385
+
"name": "timestamp",
16386
+
"$ref": "MonotonicTime"
16387
+
}
16388
+
]
16389
+
},
16333
16390
{
16334
16391
"name": "requestWillBeSentExtraInfo",
16335
16392
"description": "Fired when additional information about a requestWillBeSent event is available from the\nnetwork stack. Not every requestWillBeSent event will have an additional\nrequestWillBeSentExtraInfo fired for it, and there is no guarantee whether requestWillBeSent\nor requestWillBeSentExtraInfo will be fired first for the same request.",
0 commit comments