Skip to content

Commit f2eea64

Browse files
committed
Roll protocol to r1511308
1 parent bb9208f commit f2eea64

File tree

10 files changed

+44
-28
lines changed

10 files changed

+44
-28
lines changed

changelog.md

Lines changed: 29 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,35 @@
11

22

3+
## Roll protocol to r1511308 — _2025-09-05T04:31:05.000Z_
4+
###### Diff: [`bb9208f...0373139`](https://github.com/ChromeDevTools/devtools-protocol/compare/bb9208f...0373139)
5+
6+
```diff
7+
@@ domains/PWA.pdl:53 @@ experimental domain PWA
8+
#
9+
# To generate bundle id for proxy mode:
10+
# 1. Generate 32 random bytes.
11+
- # 2. Add a specific suffix 0x00 at the end.
12+
+ # 2. Add a specific suffix at the end following the documentation
13+
+ # https://github.com/WICG/isolated-web-apps/blob/main/Scheme.md#suffix
14+
# 3. Encode the entire sequence using Base32 without padding.
15+
#
16+
# If Chrome is not in IWA dev
17+
diff --git a/pdl/domains/Page.pdl b/pdl/domains/Page.pdl
18+
index c713e453..c9c966b6 100644
19+
--- a/pdl/domains/Page.pdl
20+
+++ b/pdl/domains/Page.pdl
21+
@@ -140,6 +140,7 @@ domain Page
22+
digital-credentials-create
23+
digital-credentials-get
24+
direct-sockets
25+
+ direct-sockets-multicast
26+
direct-sockets-private
27+
display-capture
28+
document-domain
29+
```
30+
331
## Roll protocol to r1510116 — _2025-09-03T09:48:36.000Z_
4-
###### Diff: [`1ad29d6...37adbb3`](https://github.com/ChromeDevTools/devtools-protocol/compare/1ad29d6...37adbb3)
32+
###### Diff: [`1ad29d6...bb9208f`](https://github.com/ChromeDevTools/devtools-protocol/compare/1ad29d6...bb9208f)
533

634
```diff
735
@@ domains/Autofill.pdl:22 @@ experimental domain Autofill
@@ -41916,22 +41944,4 @@ index d4102f5c..6285d9b6 100644
4191641944

4191741945
# Fired when a prerender attempt is completed.
4191841946
experimental event prerenderAttemptCompleted
41919-
```
41920-
41921-
## Roll protocol to r1085283 — _2022-12-20T04:28:00.000Z_
41922-
###### Diff: [`1ff2246...9e8e363`](https://github.com/ChromeDevTools/devtools-protocol/compare/1ff2246...9e8e363)
41923-
41924-
```diff
41925-
@@ browser_protocol.pdl:9381 @@ experimental domain Storage
41926-
parameters
41927-
string ownerOrigin
41928-
41929-
+ # Resets the budget for `ownerOrigin` by clearing all budget withdrawals.
41930-
+ experimental command resetSharedStorageBudget
41931-
+ parameters
41932-
+ string ownerOrigin
41933-
+
41934-
# Enables/disables issuing of sharedStorageAccessed events.
41935-
experimental command setSharedStorageTracking
41936-
parameters
4193741947
```

json/browser_protocol.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20086,7 +20086,7 @@
2008620086
},
2008720087
{
2008820088
"name": "install",
20089-
"description": "Installs the given manifest identity, optionally using the given installUrlOrBundleUrl\n\nIWA-specific install description:\nmanifestId corresponds to isolated-app:// + web_package::SignedWebBundleId\n\nFile installation mode:\nThe installUrlOrBundleUrl can be either file:// or http(s):// pointing\nto a signed web bundle (.swbn). In this case SignedWebBundleId must correspond to\nThe .swbn file's signing key.\n\nDev proxy installation mode:\ninstallUrlOrBundleUrl must be http(s):// that serves dev mode IWA.\nweb_package::SignedWebBundleId must be of type dev proxy.\n\nThe advantage of dev proxy mode is that all changes to IWA\nautomatically will be reflected in the running app without\nreinstallation.\n\nTo generate bundle id for proxy mode:\n1. Generate 32 random bytes.\n2. Add a specific suffix 0x00 at the end.\n3. Encode the entire sequence using Base32 without padding.\n\nIf Chrome is not in IWA dev\nmode, the installation will fail, regardless of the state of the allowlist.",
20089+
"description": "Installs the given manifest identity, optionally using the given installUrlOrBundleUrl\n\nIWA-specific install description:\nmanifestId corresponds to isolated-app:// + web_package::SignedWebBundleId\n\nFile installation mode:\nThe installUrlOrBundleUrl can be either file:// or http(s):// pointing\nto a signed web bundle (.swbn). In this case SignedWebBundleId must correspond to\nThe .swbn file's signing key.\n\nDev proxy installation mode:\ninstallUrlOrBundleUrl must be http(s):// that serves dev mode IWA.\nweb_package::SignedWebBundleId must be of type dev proxy.\n\nThe advantage of dev proxy mode is that all changes to IWA\nautomatically will be reflected in the running app without\nreinstallation.\n\nTo generate bundle id for proxy mode:\n1. Generate 32 random bytes.\n2. Add a specific suffix at the end following the documentation\n https://github.com/WICG/isolated-web-apps/blob/main/Scheme.md#suffix\n3. Encode the entire sequence using Base32 without padding.\n\nIf Chrome is not in IWA dev\nmode, the installation will fail, regardless of the state of the allowlist.",
2009020090
"parameters": [
2009120091
{
2009220092
"name": "manifestId",
@@ -20374,6 +20374,7 @@
2037420374
"digital-credentials-create",
2037520375
"digital-credentials-get",
2037620376
"direct-sockets",
20377+
"direct-sockets-multicast",
2037720378
"direct-sockets-private",
2037820379
"display-capture",
2037920380
"document-domain",

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "devtools-protocol",
3-
"version": "0.0.1510116",
3+
"version": "0.0.1511308",
44
"description": "The Chrome DevTools Protocol JSON",
55
"repository": "https://github.com/ChromeDevTools/devtools-protocol",
66
"author": "The Chromium Authors",

pdl/domains/PWA.pdl

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,8 @@ experimental domain PWA
5353
#
5454
# To generate bundle id for proxy mode:
5555
# 1. Generate 32 random bytes.
56-
# 2. Add a specific suffix 0x00 at the end.
56+
# 2. Add a specific suffix at the end following the documentation
57+
# https://github.com/WICG/isolated-web-apps/blob/main/Scheme.md#suffix
5758
# 3. Encode the entire sequence using Base32 without padding.
5859
#
5960
# If Chrome is not in IWA dev

pdl/domains/Page.pdl

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -140,6 +140,7 @@ domain Page
140140
digital-credentials-create
141141
digital-credentials-get
142142
direct-sockets
143+
direct-sockets-multicast
143144
direct-sockets-private
144145
display-capture
145146
document-domain

types/protocol-mapping.d.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4587,7 +4587,8 @@ export namespace ProtocolMapping {
45874587
*
45884588
* To generate bundle id for proxy mode:
45894589
* 1. Generate 32 random bytes.
4590-
* 2. Add a specific suffix 0x00 at the end.
4590+
* 2. Add a specific suffix at the end following the documentation
4591+
* https://github.com/WICG/isolated-web-apps/blob/main/Scheme.md#suffix
45914592
* 3. Encode the entire sequence using Base32 without padding.
45924593
*
45934594
* If Chrome is not in IWA dev

types/protocol-proxy-api.d.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3630,7 +3630,8 @@ export namespace ProtocolProxyApi {
36303630
*
36313631
* To generate bundle id for proxy mode:
36323632
* 1. Generate 32 random bytes.
3633-
* 2. Add a specific suffix 0x00 at the end.
3633+
* 2. Add a specific suffix at the end following the documentation
3634+
* https://github.com/WICG/isolated-web-apps/blob/main/Scheme.md#suffix
36343635
* 3. Encode the entire sequence using Base32 without padding.
36353636
*
36363637
* If Chrome is not in IWA dev

types/protocol-tests-proxy-api.d.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3892,7 +3892,8 @@ export namespace ProtocolTestsProxyApi {
38923892
*
38933893
* To generate bundle id for proxy mode:
38943894
* 1. Generate 32 random bytes.
3895-
* 2. Add a specific suffix 0x00 at the end.
3895+
* 2. Add a specific suffix at the end following the documentation
3896+
* https://github.com/WICG/isolated-web-apps/blob/main/Scheme.md#suffix
38963897
* 3. Encode the entire sequence using Base32 without padding.
38973898
*
38983899
* If Chrome is not in IWA dev

types/protocol.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15721,7 +15721,7 @@ export namespace Protocol {
1572115721
* in services/network/public/cpp/permissions_policy/permissions_policy_features.json5.
1572215722
* @experimental
1572315723
*/
15724-
export type PermissionsPolicyFeature = ('accelerometer' | 'all-screens-capture' | 'ambient-light-sensor' | 'aria-notify' | 'attribution-reporting' | 'autoplay' | 'bluetooth' | 'browsing-topics' | 'camera' | 'captured-surface-control' | 'ch-dpr' | 'ch-device-memory' | 'ch-downlink' | 'ch-ect' | 'ch-prefers-color-scheme' | 'ch-prefers-reduced-motion' | 'ch-prefers-reduced-transparency' | 'ch-rtt' | 'ch-save-data' | 'ch-ua' | 'ch-ua-arch' | 'ch-ua-bitness' | 'ch-ua-high-entropy-values' | 'ch-ua-platform' | 'ch-ua-model' | 'ch-ua-mobile' | 'ch-ua-form-factors' | 'ch-ua-full-version' | 'ch-ua-full-version-list' | 'ch-ua-platform-version' | 'ch-ua-wow64' | 'ch-viewport-height' | 'ch-viewport-width' | 'ch-width' | 'clipboard-read' | 'clipboard-write' | 'compute-pressure' | 'controlled-frame' | 'cross-origin-isolated' | 'deferred-fetch' | 'deferred-fetch-minimal' | 'device-attributes' | 'digital-credentials-create' | 'digital-credentials-get' | 'direct-sockets' | 'direct-sockets-private' | 'display-capture' | 'document-domain' | 'encrypted-media' | 'execution-while-out-of-viewport' | 'execution-while-not-rendered' | 'fenced-unpartitioned-storage-read' | 'focus-without-user-activation' | 'fullscreen' | 'frobulate' | 'gamepad' | 'geolocation' | 'gyroscope' | 'hid' | 'identity-credentials-get' | 'idle-detection' | 'interest-cohort' | 'join-ad-interest-group' | 'keyboard-map' | 'language-detector' | 'language-model' | 'local-fonts' | 'local-network-access' | 'magnetometer' | 'media-playback-while-not-visible' | 'microphone' | 'midi' | 'on-device-speech-recognition' | 'otp-credentials' | 'payment' | 'picture-in-picture' | 'popins' | 'private-aggregation' | 'private-state-token-issuance' | 'private-state-token-redemption' | 'publickey-credentials-create' | 'publickey-credentials-get' | 'record-ad-auction-events' | 'rewriter' | 'run-ad-auction' | 'screen-wake-lock' | 'serial' | 'shared-autofill' | 'shared-storage' | 'shared-storage-select-url' | 'smart-card' | 'speaker-selection' | 'storage-access' | 'sub-apps' | 'summarizer' | 'sync-xhr' | 'translator' | 'unload' | 'usb' | 'usb-unrestricted' | 'vertical-scroll' | 'web-app-installation' | 'web-printing' | 'web-share' | 'window-management' | 'writer' | 'xr-spatial-tracking');
15724+
export type PermissionsPolicyFeature = ('accelerometer' | 'all-screens-capture' | 'ambient-light-sensor' | 'aria-notify' | 'attribution-reporting' | 'autoplay' | 'bluetooth' | 'browsing-topics' | 'camera' | 'captured-surface-control' | 'ch-dpr' | 'ch-device-memory' | 'ch-downlink' | 'ch-ect' | 'ch-prefers-color-scheme' | 'ch-prefers-reduced-motion' | 'ch-prefers-reduced-transparency' | 'ch-rtt' | 'ch-save-data' | 'ch-ua' | 'ch-ua-arch' | 'ch-ua-bitness' | 'ch-ua-high-entropy-values' | 'ch-ua-platform' | 'ch-ua-model' | 'ch-ua-mobile' | 'ch-ua-form-factors' | 'ch-ua-full-version' | 'ch-ua-full-version-list' | 'ch-ua-platform-version' | 'ch-ua-wow64' | 'ch-viewport-height' | 'ch-viewport-width' | 'ch-width' | 'clipboard-read' | 'clipboard-write' | 'compute-pressure' | 'controlled-frame' | 'cross-origin-isolated' | 'deferred-fetch' | 'deferred-fetch-minimal' | 'device-attributes' | 'digital-credentials-create' | 'digital-credentials-get' | 'direct-sockets' | 'direct-sockets-multicast' | 'direct-sockets-private' | 'display-capture' | 'document-domain' | 'encrypted-media' | 'execution-while-out-of-viewport' | 'execution-while-not-rendered' | 'fenced-unpartitioned-storage-read' | 'focus-without-user-activation' | 'fullscreen' | 'frobulate' | 'gamepad' | 'geolocation' | 'gyroscope' | 'hid' | 'identity-credentials-get' | 'idle-detection' | 'interest-cohort' | 'join-ad-interest-group' | 'keyboard-map' | 'language-detector' | 'language-model' | 'local-fonts' | 'local-network-access' | 'magnetometer' | 'media-playback-while-not-visible' | 'microphone' | 'midi' | 'on-device-speech-recognition' | 'otp-credentials' | 'payment' | 'picture-in-picture' | 'popins' | 'private-aggregation' | 'private-state-token-issuance' | 'private-state-token-redemption' | 'publickey-credentials-create' | 'publickey-credentials-get' | 'record-ad-auction-events' | 'rewriter' | 'run-ad-auction' | 'screen-wake-lock' | 'serial' | 'shared-autofill' | 'shared-storage' | 'shared-storage-select-url' | 'smart-card' | 'speaker-selection' | 'storage-access' | 'sub-apps' | 'summarizer' | 'sync-xhr' | 'translator' | 'unload' | 'usb' | 'usb-unrestricted' | 'vertical-scroll' | 'web-app-installation' | 'web-printing' | 'web-share' | 'window-management' | 'writer' | 'xr-spatial-tracking');
1572515725

1572615726
/**
1572715727
* Reason for a permissions policy feature to be disabled.

0 commit comments

Comments
 (0)