Skip to content

Commit 3bd8f01

Browse files
committed
Roll protocol to r1663043
1 parent 2c7c583 commit 3bd8f01

11 files changed

Lines changed: 185 additions & 684 deletions

changelog.md

Lines changed: 180 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,186 @@
11

22

3+
## Roll protocol to r1663043 — _2026-07-16T05:25:38.000Z_
4+
###### Diff: [`2c7c583...08fbde2`](https://github.com/ChromeDevTools/devtools-protocol/compare/2c7c583...08fbde2)
5+
6+
```diff
7+
@@ domains/Audits.pdl:124 @@ experimental domain Audits
8+
9+
type MixedContentResourceType extends string
10+
enum
11+
- AttributionSrc
12+
Audio
13+
Beacon
14+
CSPReport
15+
diff --git a/pdl/domains/Browser.pdl b/pdl/domains/Browser.pdl
16+
index 6015a945..b1555691 100644
17+
--- a/pdl/domains/Browser.pdl
18+
+++ b/pdl/domains/Browser.pdl
19+
@@ -332,21 +332,3 @@ domain Browser
20+
command addPrivacySandboxEnrollmentOverride
21+
parameters
22+
string url
23+
-
24+
- experimental type PrivacySandboxAPI extends string
25+
- enum
26+
- BiddingAndAuctionServices
27+
- TrustedKeyValue
28+
-
29+
- # Configures encryption keys used with a given privacy sandbox API to talk
30+
- # to a trusted coordinator. Since this is intended for test automation only,
31+
- # coordinatorOrigin must be a .test domain. No existing coordinator
32+
- # configuration for the origin may exist.
33+
- command addPrivacySandboxCoordinatorKeyConfig
34+
- parameters
35+
- PrivacySandboxAPI api
36+
- string coordinatorOrigin
37+
- string keyConfig
38+
- # BrowserContext to perform the action in. When omitted, default browser
39+
- # context is used.
40+
- optional BrowserContextID browserContextId
41+
diff --git a/pdl/domains/Storage.pdl b/pdl/domains/Storage.pdl
42+
index 100e94d7..6018c22a 100644
43+
--- a/pdl/domains/Storage.pdl
44+
+++ b/pdl/domains/Storage.pdl
45+
@@ -42,45 +42,12 @@ experimental domain Storage
46+
string issuerOrigin
47+
number count
48+
49+
- # Protected audience interest group auction identifier.
50+
- type InterestGroupAuctionId extends string
51+
-
52+
- # Enum of interest group access types.
53+
- type InterestGroupAccessType extends string
54+
- enum
55+
- join
56+
- leave
57+
- update
58+
- loaded
59+
- bid
60+
- win
61+
- additionalBid
62+
- additionalBidWin
63+
- topLevelBid
64+
- topLevelAdditionalBid
65+
- clear
66+
-
67+
- # Enum of auction events.
68+
- type InterestGroupAuctionEventType extends string
69+
- enum
70+
- started
71+
- configResolved
72+
-
73+
- # Enum of network fetches auctions can do.
74+
- type InterestGroupAuctionFetchType extends string
75+
- enum
76+
- bidderJs
77+
- bidderWasm
78+
- sellerJs
79+
- bidderTrustedSignals
80+
- sellerTrustedSignals
81+
82+
# Enum of shared storage access scopes.
83+
type SharedStorageAccessScope extends string
84+
enum
85+
window
86+
sharedStorageWorklet
87+
- protectedAudienceWorklet
88+
header
89+
90+
# Enum of shared storage access methods.
91+
@@ -385,29 +352,6 @@ experimental domain Storage
92+
# True if any tokens were deleted, false otherwise.
93+
boolean didDeleteTokens
94+
95+
- # Gets details for a named interest group.
96+
- experimental command getInterestGroupDetails
97+
- parameters
98+
- string ownerOrigin
99+
- string name
100+
- returns
101+
- # This largely corresponds to:
102+
- # https://wicg.github.io/turtledove/#dictdef-generatebidinterestgroup
103+
- # but has absolute expirationTime instead of relative lifetimeMs and
104+
- # also adds joiningOrigin.
105+
- object details
106+
-
107+
- # Enables/Disables issuing of interestGroupAccessed events.
108+
- experimental command setInterestGroupTracking
109+
- parameters
110+
- boolean enable
111+
-
112+
- # Enables/Disables issuing of interestGroupAuctionEventOccurred and
113+
- # interestGroupAuctionNetworkRequestCreated.
114+
- experimental command setInterestGroupAuctionTracking
115+
- parameters
116+
- boolean enable
117+
-
118+
# Gets metadata for an origin's shared storage.
119+
experimental command getSharedStorageMetadata
120+
parameters
121+
@@ -515,48 +459,6 @@ experimental domain Storage
122+
# Storage bucket to update.
123+
string bucketId
124+
125+
- # One of the interest groups was accessed. Note that these events are global
126+
- # to all targets sharing an interest group store.
127+
- event interestGroupAccessed
128+
- parameters
129+
- Network.TimeSinceEpoch accessTime
130+
- InterestGroupAccessType type
131+
- string ownerOrigin
132+
- string name
133+
- # For topLevelBid/topLevelAdditionalBid, and when appropriate,
134+
- # win and additionalBidWin
135+
- optional string componentSellerOrigin
136+
- # For bid or somethingBid event, if done locally and not on a server.
137+
- optional number bid
138+
- optional string bidCurrency
139+
- # For non-global events --- links to interestGroupAuctionEvent
140+
- optional InterestGroupAuctionId uniqueAuctionId
141+
-
142+
- # An auction involving interest groups is taking place. These events are
143+
- # target-specific.
144+
- event interestGroupAuctionEventOccurred
145+
- parameters
146+
- Network.TimeSinceEpoch eventTime
147+
- InterestGroupAuctionEventType type
148+
- InterestGroupAuctionId uniqueAuctionId
149+
- # Set for child auctions.
150+
- optional InterestGroupAuctionId parentAuctionId
151+
- # Set for started and configResolved
152+
- optional object auctionConfig
153+
-
154+
- # Specifies which auctions a particular network fetch may be related to, and
155+
- # in what role. Note that it is not ordered with respect to
156+
- # Network.requestWillBeSent (but will happen before loadingFinished
157+
- # loadingFailed).
158+
- event interestGroupAuctionNetworkRequestCreated
159+
- parameters
160+
- InterestGroupAuctionFetchType type
161+
- Network.RequestId requestId
162+
- # This is the set of the auctions using the worklet that issued this
163+
- # request. In the case of trusted signals, it's possible that only some of
164+
- # them actually care about the keys being queried.
165+
- array of InterestGroupAuctionId auctions
166+
-
167+
# Shared storage was accessed by the associated page.
168+
# The following parameters are included in all events.
169+
event sharedStorageAccessed
170+
@@ -621,9 +523,3 @@ experimental domain Storage
171+
experimental command getRelatedWebsiteSets
172+
returns
173+
array of RelatedWebsiteSet sets
174+
-
175+
- command setProtectedAudienceKAnonymity
176+
- parameters
177+
- string owner
178+
- string name
179+
- array of binary hashes
180+
```
181+
3182
## Roll protocol to r1662358 — _2026-07-15T05:18:52.000Z_
4-
###### Diff: [`0837097...8fe6908`](https://github.com/ChromeDevTools/devtools-protocol/compare/0837097...8fe6908)
183+
###### Diff: [`0837097...2c7c583`](https://github.com/ChromeDevTools/devtools-protocol/compare/0837097...2c7c583)
5184

6185
```diff
7186
@@ domains/Audits.pdl:270 @@ experimental domain Audits
@@ -42904,34 +43083,4 @@ index 4754f17c..8dad9c98 100644
4290443083
SpeculationRuleRemoved
4290543084
ActivatedWithAuxiliaryBrowsingContexts
4290643085
MaxNumOfRunningEagerPrerendersExceeded
42907-
```
42908-
42909-
## Roll protocol to r1207450 — _2023-10-10T04:26:17.000Z_
42910-
###### Diff: [`f050ff5...37c2c03`](https://github.com/ChromeDevTools/devtools-protocol/compare/f050ff5...37c2c03)
42911-
42912-
```diff
42913-
@@ browser_protocol.pdl:4499 @@ domain Input
42914-
# The normalized tangential pressure, which has a range of [-1,1] (default: 0).
42915-
experimental optional number tangentialPressure
42916-
# The plane angle between the Y-Z plane and the plane containing both the stylus axis and the Y axis, in degrees of the range [-90,90], a positive tiltX is to the right (default: 0)
42917-
- experimental optional integer tiltX
42918-
+ optional number tiltX
42919-
# The plane angle between the X-Z plane and the plane containing both the stylus axis and the X axis, in degrees of the range [-90,90], a positive tiltY is towards the user (default: 0).
42920-
- experimental optional integer tiltY
42921-
+ optional number tiltY
42922-
# The clockwise rotation of a pen stylus around its own major axis, in degrees in the range [0,359] (default: 0).
42923-
experimental optional integer twist
42924-
# Identifier used to track touch sources between events, must be unique within an event.
42925-
@@ -4667,9 +4667,9 @@ domain Input
42926-
# The normalized tangential pressure, which has a range of [-1,1] (default: 0).
42927-
experimental optional number tangentialPressure
42928-
# The plane angle between the Y-Z plane and the plane containing both the stylus axis and the Y axis, in degrees of the range [-90,90], a positive tiltX is to the right (default: 0).
42929-
- experimental optional integer tiltX
42930-
+ optional number tiltX
42931-
# The plane angle between the X-Z plane and the plane containing both the stylus axis and the X axis, in degrees of the range [-90,90], a positive tiltY is towards the user (default: 0).
42932-
- experimental optional integer tiltY
42933-
+ optional number tiltY
42934-
# The clockwise rotation of a pen stylus around its own major axis, in degrees in the range [0,359] (default: 0).
42935-
experimental optional integer twist
42936-
# X delta in CSS pixels for mouse wheel event (default: 0).
4293743086
```

0 commit comments

Comments
 (0)