Skip to content

Commit 3a3ebb4

Browse files
committed
Roll protocol to r1457408
1 parent 2edae2a commit 3a3ebb4

7 files changed

Lines changed: 22 additions & 77 deletions

File tree

changelog.md

Lines changed: 16 additions & 71 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,22 @@
11

22

3+
## Roll protocol to r1457408 — _2025-05-08T04:31:17.000Z_
4+
###### Diff: [`2edae2a...09122f3`](https://github.com/ChromeDevTools/devtools-protocol/compare/2edae2a...09122f3)
5+
6+
```diff
7+
@@ browser_protocol.pdl:7959 @@ domain Network
8+
LoadNetworkResourcePageResult resource
9+
10+
# Sets Controls for third-party cookie access
11+
- # Page reload is required before the new cookie bahavior will be observed
12+
+ # Page reload is required before the new cookie behavior will be observed
13+
experimental command setCookieControls
14+
parameters
15+
# Whether 3pc restriction is enabled.
16+
```
17+
318
## Roll protocol to r1456738 — _2025-05-07T04:30:59.000Z_
4-
###### Diff: [`3d03f3d...e2793b5`](https://github.com/ChromeDevTools/devtools-protocol/compare/3d03f3d...e2793b5)
19+
###### Diff: [`3d03f3d...2edae2a`](https://github.com/ChromeDevTools/devtools-protocol/compare/3d03f3d...2edae2a)
520

621
```diff
722
@@ browser_protocol.pdl:6223 @@ domain Network
@@ -13870,74 +13885,4 @@ index 8d8211b..2d56043 100644
1387013885

1387113886
# Details for issues around "Attribution Reporting API" usage.
1387213887
# Explainer: https://github.com/WICG/attribution-reporting-api
13873-
```
13874-
13875-
## Roll protocol to r1030018 — _2022-07-30T04:33:35.000Z_
13876-
###### Diff: [`1ad73ad...18fb7c3`](https://github.com/ChromeDevTools/devtools-protocol/compare/1ad73ad...18fb7c3)
13877-
13878-
```diff
13879-
@@ browser_protocol.pdl:9091 @@ experimental domain Storage
13880-
# Security origin.
13881-
string origin
13882-
13883-
+ # Registers storage key to be notified when an update occurs to its IndexedDB.
13884-
+ command trackIndexedDBForStorageKey
13885-
+ parameters
13886-
+ # Storage key.
13887-
+ string storageKey
13888-
+
13889-
# Unregisters origin from receiving notifications for cache storage.
13890-
command untrackCacheStorageForOrigin
13891-
parameters
13892-
@@ -9103,6 +9109,12 @@ experimental domain Storage
13893-
# Security origin.
13894-
string origin
13895-
13896-
+ # Unregisters storage key from receiving notifications for IndexedDB.
13897-
+ command untrackIndexedDBForStorageKey
13898-
+ parameters
13899-
+ # Storage key.
13900-
+ string storageKey
13901-
+
13902-
# Returns the number of stored Trust Tokens per issuer for the
13903-
# current browsing context.
13904-
experimental command getTrustTokens
13905-
@@ -9150,6 +9162,8 @@ experimental domain Storage
13906-
parameters
13907-
# Origin to update.
13908-
string origin
13909-
+ # Storage key to update.
13910-
+ string storageKey
13911-
# Database to update.
13912-
string databaseName
13913-
# ObjectStore to update.
13914-
@@ -9160,6 +9174,8 @@ experimental domain Storage
13915-
parameters
13916-
# Origin to update.
13917-
string origin
13918-
+ # Storage key to update.
13919-
+ string storageKey
13920-
13921-
# One of the interest groups was accessed by the associated page.
13922-
event interestGroupAccessed
13923-
@@ -9330,13 +9346,16 @@ domain Target
13924-
experimental type FilterEntry extends object
13925-
properties
13926-
# If set, causes exclusion of mathcing targets from the list.
13927-
- # The remainder of filter entries in the filter arrat are ignored.
13928-
optional boolean exclude
13929-
# If not present, matches any type.
13930-
optional string type
13931-
13932-
- # If filter is not specified, the one assumed is [{type: "browser", exclude: true}, {}]
13933-
- # (i.e. include everything but browser).
13934-
+ # The entries in TargetFilter are matched sequentially against targets and
13935-
+ # the first entry that matches determines if the target is included or not,
13936-
+ # depending on the value of `exclude` field in the entry.
13937-
+ # If filter is not specified, the one assumed is
13938-
+ # [{type: "browser", exclude: true}, {type: "tab", exclude: true}, {}]
13939-
+ # (i.e. include everything but `browser` and `tab`).
13940-
experimental type TargetFilter extends array of FilterEntry
13941-
13942-
experimental type RemoteLocation extends object
1394313888
```

json/browser_protocol.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15752,7 +15752,7 @@
1575215752
},
1575315753
{
1575415754
"name": "setCookieControls",
15755-
"description": "Sets Controls for third-party cookie access\nPage reload is required before the new cookie bahavior will be observed",
15755+
"description": "Sets Controls for third-party cookie access\nPage reload is required before the new cookie behavior will be observed",
1575615756
"experimental": true,
1575715757
"parameters": [
1575815758
{

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

pdl/browser_protocol.pdl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7959,7 +7959,7 @@ domain Network
79597959
LoadNetworkResourcePageResult resource
79607960

79617961
# Sets Controls for third-party cookie access
7962-
# Page reload is required before the new cookie bahavior will be observed
7962+
# Page reload is required before the new cookie behavior will be observed
79637963
experimental command setCookieControls
79647964
parameters
79657965
# Whether 3pc restriction is enabled.

types/protocol-mapping.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3719,7 +3719,7 @@ export namespace ProtocolMapping {
37193719
};
37203720
/**
37213721
* Sets Controls for third-party cookie access
3722-
* Page reload is required before the new cookie bahavior will be observed
3722+
* Page reload is required before the new cookie behavior will be observed
37233723
*/
37243724
'Network.setCookieControls': {
37253725
paramsType: [Protocol.Network.SetCookieControlsRequest];

types/protocol-proxy-api.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2611,7 +2611,7 @@ export namespace ProtocolProxyApi {
26112611

26122612
/**
26132613
* Sets Controls for third-party cookie access
2614-
* Page reload is required before the new cookie bahavior will be observed
2614+
* Page reload is required before the new cookie behavior will be observed
26152615
*/
26162616
setCookieControls(params: Protocol.Network.SetCookieControlsRequest): Promise<void>;
26172617

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2751,7 +2751,7 @@ export namespace ProtocolTestsProxyApi {
27512751

27522752
/**
27532753
* Sets Controls for third-party cookie access
2754-
* Page reload is required before the new cookie bahavior will be observed
2754+
* Page reload is required before the new cookie behavior will be observed
27552755
*/
27562756
setCookieControls(params: Protocol.Network.SetCookieControlsRequest): Promise<{id: number, result: void, sessionId: string}>;
27572757

0 commit comments

Comments
 (0)