Skip to content

Commit

Permalink
Roll protocol to r883894
Browse files Browse the repository at this point in the history
  • Loading branch information
devtools-bot committed May 18, 2021
1 parent 56b0f11 commit bc63f36
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 5 deletions.
8 changes: 8 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@


## Roll protocol to r883449
###### _2021-05-17 06:16:08_ | Diff: [ea8402f...56b0f11](https://github.com/ChromeDevTools/devtools-protocol/compare/ea8402f...56b0f11)
#### `DOM`: new type
* [`DOM.CompatibilityMode`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#type-CompatibilityMode)
#### `DOM`: modified type
* [`DOM.Node`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#type-Node) - The properties's `compatibilityMode` _added_.


## Roll protocol to r882987
###### _2021-05-14 09:16:22_ | Diff: [96c89c5...ea8402f](https://github.com/ChromeDevTools/devtools-protocol/compare/96c89c5...ea8402f)
#### `Page`: modified type
Expand Down
3 changes: 2 additions & 1 deletion json/browser_protocol.json
Original file line number Diff line number Diff line change
Expand Up @@ -13942,7 +13942,7 @@
},
{
"id": "PermissionsPolicyFeature",
"description": "All Permissions Policy features. This enum should match the one defined\nin renderer/core/feature_policy/feature_policy_features.json5.",
"description": "All Permissions Policy features. This enum should match the one defined\nin third_party/blink/renderer/core/permissions_policy/permissions_policy_features.json5.",
"experimental": true,
"type": "string",
"enum": [
Expand All @@ -13956,6 +13956,7 @@
"ch-downlink",
"ch-ect",
"ch-lang",
"ch-prefers-color-scheme",
"ch-rtt",
"ch-ua",
"ch-ua-arch",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "devtools-protocol",
"version": "0.0.883449",
"version": "0.0.883894",
"description": "The Chrome DevTools Protocol JSON",
"repository": "https://github.com/ChromeDevTools/devtools-protocol",
"author": "The Chromium Authors",
Expand Down
3 changes: 2 additions & 1 deletion pdl/browser_protocol.pdl
Original file line number Diff line number Diff line change
Expand Up @@ -6441,7 +6441,7 @@ domain Page
PerformanceProfile

# All Permissions Policy features. This enum should match the one defined
# in renderer/core/feature_policy/feature_policy_features.json5.
# in third_party/blink/renderer/core/permissions_policy/permissions_policy_features.json5.
experimental type PermissionsPolicyFeature extends string
enum
accelerometer
Expand All @@ -6454,6 +6454,7 @@ domain Page
ch-downlink
ch-ect
ch-lang
ch-prefers-color-scheme
ch-rtt
ch-ua
ch-ua-arch
Expand Down
4 changes: 2 additions & 2 deletions types/protocol.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11446,9 +11446,9 @@ export namespace Protocol {

/**
* All Permissions Policy features. This enum should match the one defined
* in renderer/core/feature_policy/feature_policy_features.json5.
* in third_party/blink/renderer/core/permissions_policy/permissions_policy_features.json5.
*/
export type PermissionsPolicyFeature = ('accelerometer' | 'ambient-light-sensor' | 'attribution-reporting' | 'autoplay' | 'camera' | 'ch-dpr' | 'ch-device-memory' | 'ch-downlink' | 'ch-ect' | 'ch-lang' | 'ch-rtt' | 'ch-ua' | 'ch-ua-arch' | 'ch-ua-platform' | 'ch-ua-model' | 'ch-ua-mobile' | 'ch-ua-full-version' | 'ch-ua-platform-version' | 'ch-viewport-width' | 'ch-width' | 'clipboard-read' | 'clipboard-write' | 'cross-origin-isolated' | 'direct-sockets' | 'display-capture' | 'document-domain' | 'encrypted-media' | 'execution-while-out-of-viewport' | 'execution-while-not-rendered' | 'focus-without-user-activation' | 'fullscreen' | 'frobulate' | 'gamepad' | 'geolocation' | 'gyroscope' | 'hid' | 'idle-detection' | 'interest-cohort' | 'magnetometer' | 'microphone' | 'midi' | 'otp-credentials' | 'payment' | 'picture-in-picture' | 'publickey-credentials-get' | 'screen-wake-lock' | 'serial' | 'shared-autofill' | 'storage-access-api' | 'sync-xhr' | 'trust-token-redemption' | 'usb' | 'vertical-scroll' | 'web-share' | 'xr-spatial-tracking');
export type PermissionsPolicyFeature = ('accelerometer' | 'ambient-light-sensor' | 'attribution-reporting' | 'autoplay' | 'camera' | 'ch-dpr' | 'ch-device-memory' | 'ch-downlink' | 'ch-ect' | 'ch-lang' | 'ch-prefers-color-scheme' | 'ch-rtt' | 'ch-ua' | 'ch-ua-arch' | 'ch-ua-platform' | 'ch-ua-model' | 'ch-ua-mobile' | 'ch-ua-full-version' | 'ch-ua-platform-version' | 'ch-viewport-width' | 'ch-width' | 'clipboard-read' | 'clipboard-write' | 'cross-origin-isolated' | 'direct-sockets' | 'display-capture' | 'document-domain' | 'encrypted-media' | 'execution-while-out-of-viewport' | 'execution-while-not-rendered' | 'focus-without-user-activation' | 'fullscreen' | 'frobulate' | 'gamepad' | 'geolocation' | 'gyroscope' | 'hid' | 'idle-detection' | 'interest-cohort' | 'magnetometer' | 'microphone' | 'midi' | 'otp-credentials' | 'payment' | 'picture-in-picture' | 'publickey-credentials-get' | 'screen-wake-lock' | 'serial' | 'shared-autofill' | 'storage-access-api' | 'sync-xhr' | 'trust-token-redemption' | 'usb' | 'vertical-scroll' | 'web-share' | 'xr-spatial-tracking');

/**
* Reason for a permissions policy feature to be disabled.
Expand Down

0 comments on commit bc63f36

Please sign in to comment.