Skip to content

Commit 8feb4e1

Browse files
committed
Roll protocol to r1624250
1 parent 470fb6a commit 8feb4e1

6 files changed

Lines changed: 21 additions & 88 deletions

File tree

changelog.md

Lines changed: 15 additions & 84 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,21 @@
11

22

3+
## Roll protocol to r1624250 — _2026-05-02T05:22:23.000Z_
4+
###### Diff: [`470fb6a...0e0ce12`](https://github.com/ChromeDevTools/devtools-protocol/compare/470fb6a...0e0ce12)
5+
6+
```diff
7+
@@ domains/Page.pdl:168 @@ domain Page
8+
sub-apps
9+
summarizer
10+
sync-xhr
11+
+ tools
12+
translator
13+
unload
14+
usb
15+
```
16+
317
## Roll protocol to r1621552 — _2026-04-28T05:34:17.000Z_
4-
###### Diff: [`e0946be...0a44e87`](https://github.com/ChromeDevTools/devtools-protocol/compare/e0946be...0a44e87)
18+
###### Diff: [`e0946be...470fb6a`](https://github.com/ChromeDevTools/devtools-protocol/compare/e0946be...470fb6a)
519

620
```diff
721
@@ domains/DOM.pdl:44 @@ domain DOM
@@ -42882,87 +42896,4 @@ index 4754f17c..8dad9c98 100644
4288242896

4288342897
# TODO(crbug.com/1458532): Add other Attribution Reporting events, e.g.
4288442898
# trigger registration.
42885-
```
42886-
42887-
## Roll protocol to r1166296 — _2023-07-06T04:28:50.000Z_
42888-
###### Diff: [`02fc905...f3b3b51`](https://github.com/ChromeDevTools/devtools-protocol/compare/02fc905...f3b3b51)
42889-
42890-
```diff
42891-
@@ browser_protocol.pdl:1562 @@ experimental domain CSS
42892-
ContainerRule
42893-
LayerRule
42894-
ScopeRule
42895-
+ StyleRule
42896-
42897-
# CSS coverage information.
42898-
type RuleUsage extends object
42899-
@@ -9655,6 +9656,69 @@ experimental domain Storage
42900-
# If enabled, noise is suppressed and reports are sent immediately.
42901-
boolean enabled
42902-
42903-
+ # Enables/disables issuing of Attribution Reporting events.
42904-
+ experimental command setAttributionReportingTracking
42905-
+ parameters
42906-
+ boolean enable
42907-
+
42908-
+ experimental type AttributionReportingSourceType extends string
42909-
+ enum
42910-
+ navigation
42911-
+ event
42912-
+
42913-
+ experimental type UnsignedInt64AsBase10 extends string
42914-
+ experimental type UnsignedInt128AsBase16 extends string
42915-
+ experimental type SignedInt64AsBase10 extends string
42916-
+
42917-
+ experimental type AttributionReportingFilterDataEntry extends object
42918-
+ properties
42919-
+ string key
42920-
+ array of string values
42921-
+
42922-
+ experimental type AttributionReportingAggregationKeysEntry extends object
42923-
+ properties
42924-
+ string key
42925-
+ UnsignedInt128AsBase16 value
42926-
+
42927-
+ experimental type AttributionReportingSourceRegistration extends object
42928-
+ properties
42929-
+ Network.TimeSinceEpoch time
42930-
+ # duration in seconds
42931-
+ optional integer expiry
42932-
+ # duration in seconds
42933-
+ optional integer eventReportWindow
42934-
+ # duration in seconds
42935-
+ optional integer aggregatableReportWindow
42936-
+ AttributionReportingSourceType type
42937-
+ string sourceOrigin
42938-
+ string reportingOrigin
42939-
+ array of string destinationSites
42940-
+ UnsignedInt64AsBase10 eventId
42941-
+ SignedInt64AsBase10 priority
42942-
+ array of AttributionReportingFilterDataEntry filterData
42943-
+ array of AttributionReportingAggregationKeysEntry aggregationKeys
42944-
+ optional UnsignedInt64AsBase10 debugKey
42945-
+
42946-
+ experimental type AttributionReportingSourceRegistrationResult extends string
42947-
+ enum
42948-
+ success
42949-
+ internalError
42950-
+ insufficientSourceCapacity
42951-
+ insufficientUniqueDestinationCapacity
42952-
+ excessiveReportingOrigins
42953-
+ prohibitedByBrowserPolicy
42954-
+ successNoised
42955-
+ destinationReportingLimitReached
42956-
+ destinationGlobalLimitReached
42957-
+ destinationBothLimitsReached
42958-
+
42959-
+ # TODO(crbug.com/1458532): Add other Attribution Reporting events, e.g.
42960-
+ # trigger registration.
42961-
+ experimental event attributionReportingSourceRegistered
42962-
+ parameters
42963-
+ AttributionReportingSourceRegistration registration
42964-
+ AttributionReportingSourceRegistrationResult result
42965-
+
42966-
# The SystemInfo domain defines methods and events for querying low-level system information.
42967-
experimental domain SystemInfo
4296842899
```

json/browser_protocol.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21707,6 +21707,7 @@
2170721707
"sub-apps",
2170821708
"summarizer",
2170921709
"sync-xhr",
21710+
"tools",
2171021711
"translator",
2171121712
"unload",
2171221713
"usb",

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.1621552",
3+
"version": "0.0.1624250",
44
"description": "The Chrome DevTools Protocol JSON",
55
"repository": "https://github.com/ChromeDevTools/devtools-protocol",
66
"author": "The Chromium Authors",

pdl/domains/Page.pdl

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -168,6 +168,7 @@ domain Page
168168
sub-apps
169169
summarizer
170170
sync-xhr
171+
tools
171172
translator
172173
unload
173174
usb

types/protocol.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16571,7 +16571,7 @@ export namespace Protocol {
1657116571
* in services/network/public/cpp/permissions_policy/permissions_policy_features.json5.
1657216572
* @experimental
1657316573
*/
16574-
export type PermissionsPolicyFeature = ('accelerometer' | 'all-screens-capture' | 'ambient-light-sensor' | 'aria-notify' | 'attribution-reporting' | 'autofill' | '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' | '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' | 'local-network-access' | 'loopback-network' | 'magnetometer' | 'manual-text' | 'media-playback-while-not-visible' | 'microphone' | 'midi' | 'on-device-speech-recognition' | 'otp-credentials' | 'payment' | 'picture-in-picture' | '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-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');
16574+
export type PermissionsPolicyFeature = ('accelerometer' | 'all-screens-capture' | 'ambient-light-sensor' | 'aria-notify' | 'attribution-reporting' | 'autofill' | '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' | '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' | 'local-network-access' | 'loopback-network' | 'magnetometer' | 'manual-text' | 'media-playback-while-not-visible' | 'microphone' | 'midi' | 'on-device-speech-recognition' | 'otp-credentials' | 'payment' | 'picture-in-picture' | '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-storage' | 'shared-storage-select-url' | 'smart-card' | 'speaker-selection' | 'storage-access' | 'sub-apps' | 'summarizer' | 'sync-xhr' | 'tools' | 'translator' | 'unload' | 'usb' | 'usb-unrestricted' | 'vertical-scroll' | 'web-app-installation' | 'web-printing' | 'web-share' | 'window-management' | 'writer' | 'xr-spatial-tracking');
1657516575

1657616576
/**
1657716577
* Reason for a permissions policy feature to be disabled.

0 commit comments

Comments
 (0)