devtools-protocol 0.0.1269399 → 0.0.1271365

Sign up to get free protection for your applications and to get access to all the features.
@@ -13818,6 +13818,27 @@
13818
13818
  "description": "Connection type if known.",
13819
13819
  "optional": true,
13820
13820
  "$ref": "ConnectionType"
13821
+ },
13822
+ {
13823
+ "name": "packetLoss",
13824
+ "description": "WebRTC packet loss (percent, 0-100). 0 disables packet loss emulation, 100 drops all the packets.",
13825
+ "experimental": true,
13826
+ "optional": true,
13827
+ "type": "number"
13828
+ },
13829
+ {
13830
+ "name": "packetQueueLength",
13831
+ "description": "WebRTC packet queue length (packet). 0 removes any queue length limitations.",
13832
+ "experimental": true,
13833
+ "optional": true,
13834
+ "type": "integer"
13835
+ },
13836
+ {
13837
+ "name": "packetReordering",
13838
+ "description": "WebRTC packetReordering feature.",
13839
+ "experimental": true,
13840
+ "optional": true,
13841
+ "type": "boolean"
13821
13842
  }
13822
13843
  ]
13823
13844
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "devtools-protocol",
3
- "version": "0.0.1269399",
3
+ "version": "0.0.1271365",
4
4
  "description": "The Chrome DevTools Protocol JSON",
5
5
  "repository": "https://github.com/ChromeDevTools/devtools-protocol",
6
6
  "author": "The Chromium Authors",
@@ -6356,6 +6356,12 @@ domain Network
6356
6356
  number uploadThroughput
6357
6357
  # Connection type if known.
6358
6358
  optional ConnectionType connectionType
6359
+ # WebRTC packet loss (percent, 0-100). 0 disables packet loss emulation, 100 drops all the packets.
6360
+ experimental optional number packetLoss
6361
+ # WebRTC packet queue length (packet). 0 removes any queue length limitations.
6362
+ experimental optional integer packetQueueLength
6363
+ # WebRTC packetReordering feature.
6364
+ experimental optional boolean packetReordering
6359
6365
 
6360
6366
  # Enables network tracking, network events will now be delivered to the client.
6361
6367
  command enable
@@ -11220,6 +11220,18 @@ export namespace Protocol {
11220
11220
  * Connection type if known.
11221
11221
  */
11222
11222
  connectionType?: ConnectionType;
11223
+ /**
11224
+ * WebRTC packet loss (percent, 0-100). 0 disables packet loss emulation, 100 drops all the packets.
11225
+ */
11226
+ packetLoss?: number;
11227
+ /**
11228
+ * WebRTC packet queue length (packet). 0 removes any queue length limitations.
11229
+ */
11230
+ packetQueueLength?: integer;
11231
+ /**
11232
+ * WebRTC packetReordering feature.
11233
+ */
11234
+ packetReordering?: boolean;
11223
11235
  }
11224
11236
 
11225
11237
  export interface EnableRequest {