devtools-protocol 0.0.1316850 → 0.0.1317198

Sign up to get free protection for your applications and to get access to all the features.
@@ -2711,6 +2711,12 @@
2711
2711
  "optional": true,
2712
2712
  "type": "boolean"
2713
2713
  },
2714
+ {
2715
+ "name": "allowWithoutGesture",
2716
+ "description": "For \"fullscreen\" permission, must specify allowWithoutGesture:true.",
2717
+ "optional": true,
2718
+ "type": "boolean"
2719
+ },
2714
2720
  {
2715
2721
  "name": "panTiltZoom",
2716
2722
  "description": "For \"camera\" permission, may specify panTiltZoom.",
@@ -15411,11 +15417,6 @@
15411
15417
  }
15412
15418
  ]
15413
15419
  },
15414
- {
15415
- "name": "policyUpdated",
15416
- "description": "Fired once security policy has been updated.",
15417
- "experimental": true
15418
- },
15419
15420
  {
15420
15421
  "name": "subresourceWebBundleMetadataReceived",
15421
15422
  "description": "Fired once when parsing the .wbn file has succeeded.\nThe event contains the information about the web bundle contents.",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "devtools-protocol",
3
- "version": "0.0.1316850",
3
+ "version": "0.0.1317198",
4
4
  "description": "The Chrome DevTools Protocol JSON",
5
5
  "repository": "https://github.com/ChromeDevTools/devtools-protocol",
6
6
  "author": "The Chromium Authors",
@@ -1367,6 +1367,8 @@ domain Browser
1367
1367
  optional boolean userVisibleOnly
1368
1368
  # For "clipboard" permission, may specify allowWithoutSanitization.
1369
1369
  optional boolean allowWithoutSanitization
1370
+ # For "fullscreen" permission, must specify allowWithoutGesture:true.
1371
+ optional boolean allowWithoutGesture
1370
1372
  # For "camera" permission, may specify panTiltZoom.
1371
1373
  optional boolean panTiltZoom
1372
1374
 
@@ -7119,9 +7121,6 @@ domain Network
7119
7121
  # The number of obtained Trust Tokens on a successful "Issuance" operation.
7120
7122
  optional integer issuedTokenCount
7121
7123
 
7122
- # Fired once security policy has been updated.
7123
- experimental event policyUpdated
7124
-
7125
7124
  # Fired once when parsing the .wbn file has succeeded.
7126
7125
  # The event contains the information about the web bundle contents.
7127
7126
  experimental event subresourceWebBundleMetadataReceived
@@ -372,10 +372,6 @@ export namespace ProtocolMapping {
372
372
  * or after the response was received.
373
373
  */
374
374
  'Network.trustTokenOperationDone': [Protocol.Network.TrustTokenOperationDoneEvent];
375
- /**
376
- * Fired once security policy has been updated.
377
- */
378
- 'Network.policyUpdated': [];
379
375
  /**
380
376
  * Fired once when parsing the .wbn file has succeeded.
381
377
  * The event contains the information about the web bundle contents.
@@ -2604,11 +2604,6 @@ export namespace ProtocolProxyApi {
2604
2604
  */
2605
2605
  on(event: 'trustTokenOperationDone', listener: (params: Protocol.Network.TrustTokenOperationDoneEvent) => void): void;
2606
2606
 
2607
- /**
2608
- * Fired once security policy has been updated.
2609
- */
2610
- on(event: 'policyUpdated', listener: () => void): void;
2611
-
2612
2607
  /**
2613
2608
  * Fired once when parsing the .wbn file has succeeded.
2614
2609
  * The event contains the information about the web bundle contents.
@@ -2790,13 +2790,6 @@ export namespace ProtocolTestsProxyApi {
2790
2790
  offTrustTokenOperationDone(listener: (event: { params: Protocol.Network.TrustTokenOperationDoneEvent }) => void): void;
2791
2791
  onceTrustTokenOperationDone(eventMatcher?: (event: { params: Protocol.Network.TrustTokenOperationDoneEvent }) => boolean): Promise<{ params: Protocol.Network.TrustTokenOperationDoneEvent }>;
2792
2792
 
2793
- /**
2794
- * Fired once security policy has been updated.
2795
- */
2796
- onPolicyUpdated(listener: (event: ) => void): void;
2797
- offPolicyUpdated(listener: (event: ) => void): void;
2798
- oncePolicyUpdated(eventMatcher?: (event: ) => boolean): Promise<>;
2799
-
2800
2793
  /**
2801
2794
  * Fired once when parsing the .wbn file has succeeded.
2802
2795
  * The event contains the information about the web bundle contents.
@@ -4087,6 +4087,10 @@ export namespace Protocol {
4087
4087
  * For "clipboard" permission, may specify allowWithoutSanitization.
4088
4088
  */
4089
4089
  allowWithoutSanitization?: boolean;
4090
+ /**
4091
+ * For "fullscreen" permission, must specify allowWithoutGesture:true.
4092
+ */
4093
+ allowWithoutGesture?: boolean;
4090
4094
  /**
4091
4095
  * For "camera" permission, may specify panTiltZoom.
4092
4096
  */