Skip to content

Commit 42c3c57

Browse files
committed
Roll protocol to r1648812
1 parent fc77610 commit 42c3c57

7 files changed

Lines changed: 27 additions & 32 deletions

File tree

changelog.md

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

22

3+
## Roll protocol to r1648812 — _2026-06-18T06:03:26.000Z_
4+
###### Diff: [`fc77610...99c77c9`](https://github.com/ChromeDevTools/devtools-protocol/compare/fc77610...99c77c9)
5+
6+
```diff
7+
@@ domains/Network.pdl:738 @@ domain Network
8+
None
9+
# The cookie should have been blocked by 3PCD but is exempted by explicit user setting.
10+
UserSetting
11+
- # The cookie should have been blocked by 3PCD but is exempted by metadata mitigation.
12+
- TPCDMetadata
13+
- # The cookie should have been blocked by 3PCD but is exempted by Deprecation Trial mitigation.
14+
- TPCDDeprecationTrial
15+
- # The cookie should have been blocked by 3PCD but is exempted by Top-level Deprecation Trial mitigation.
16+
- TopLevelTPCDDeprecationTrial
17+
- # The cookie should have been blocked by 3PCD but is exempted by heuristics mitigation.
18+
- TPCDHeuristics
19+
# The cookie should have been blocked by 3PCD but is exempted by Enterprise Policy.
20+
EnterprisePolicy
21+
# The cookie should have been blocked by 3PCD but is exempted by Storage Access API.
22+
```
23+
324
## Roll protocol to r1648091 — _2026-06-17T06:06:09.000Z_
4-
###### Diff: [`8ac781c...fec78bf`](https://github.com/ChromeDevTools/devtools-protocol/compare/8ac781c...fec78bf)
25+
###### Diff: [`8ac781c...fc77610`](https://github.com/ChromeDevTools/devtools-protocol/compare/8ac781c...fc77610)
526

627
```diff
728
@@ domains/CSS.pdl:82 @@ experimental domain CSS
@@ -42869,18 +42890,4 @@ index 4754f17c..8dad9c98 100644
4286942890

4287042891
# Fired when a prerender attempt is completed.
4287142892
event prerenderAttemptCompleted
42872-
```
42873-
42874-
## Roll protocol to r1195796 — _2023-09-13T04:26:23.000Z_
42875-
###### Diff: [`c0f98d9...2fffccb`](https://github.com/ChromeDevTools/devtools-protocol/compare/c0f98d9...2fffccb)
42876-
42877-
```diff
42878-
@@ js_protocol.pdl:1066 @@ domain Runtime
42879-
arraybuffer
42880-
node
42881-
window
42882-
+ generator
42883-
optional any value
42884-
optional string objectId
42885-
# Set if value reference met more then once during serialization. In such
4288642893
```

json/browser_protocol.json

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16797,10 +16797,6 @@
1679716797
"enum": [
1679816798
"None",
1679916799
"UserSetting",
16800-
"TPCDMetadata",
16801-
"TPCDDeprecationTrial",
16802-
"TopLevelTPCDDeprecationTrial",
16803-
"TPCDHeuristics",
1680416800
"EnterprisePolicy",
1680516801
"StorageAccess",
1680616802
"TopLevelStorageAccess",

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

pdl/domains/Network.pdl

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -738,14 +738,6 @@ domain Network
738738
None
739739
# The cookie should have been blocked by 3PCD but is exempted by explicit user setting.
740740
UserSetting
741-
# The cookie should have been blocked by 3PCD but is exempted by metadata mitigation.
742-
TPCDMetadata
743-
# The cookie should have been blocked by 3PCD but is exempted by Deprecation Trial mitigation.
744-
TPCDDeprecationTrial
745-
# The cookie should have been blocked by 3PCD but is exempted by Top-level Deprecation Trial mitigation.
746-
TopLevelTPCDDeprecationTrial
747-
# The cookie should have been blocked by 3PCD but is exempted by heuristics mitigation.
748-
TPCDHeuristics
749741
# The cookie should have been blocked by 3PCD but is exempted by Enterprise Policy.
750742
EnterprisePolicy
751743
# The cookie should have been blocked by 3PCD but is exempted by Storage Access API.

scripts/inspector_protocol

Submodule inspector_protocol updated from 888b4b7 to 1b9a1bc

types/protocol.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13268,7 +13268,7 @@ export namespace Protocol {
1326813268
* Types of reasons why a cookie should have been blocked by 3PCD but is exempted for the request.
1326913269
* @experimental
1327013270
*/
13271-
export type CookieExemptionReason = ('None' | 'UserSetting' | 'TPCDMetadata' | 'TPCDDeprecationTrial' | 'TopLevelTPCDDeprecationTrial' | 'TPCDHeuristics' | 'EnterprisePolicy' | 'StorageAccess' | 'TopLevelStorageAccess' | 'Scheme' | 'SameSiteNoneCookiesInSandbox');
13271+
export type CookieExemptionReason = ('None' | 'UserSetting' | 'EnterprisePolicy' | 'StorageAccess' | 'TopLevelStorageAccess' | 'Scheme' | 'SameSiteNoneCookiesInSandbox');
1327213272

1327313273
/**
1327413274
* A cookie which was not stored from a response with the corresponding reason.

0 commit comments

Comments
 (0)