Skip to content

Commit b4246f2

Browse files
committed
Roll protocol to r1528500
1 parent 7c74e7d commit b4246f2

File tree

6 files changed

+22
-19
lines changed

6 files changed

+22
-19
lines changed

changelog.md

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

22

3+
## Roll protocol to r1528500 — _2025-10-11T04:30:26.000Z_
4+
###### Diff: [`7c74e7d...10a2cdf`](https://github.com/ChromeDevTools/devtools-protocol/compare/7c74e7d...10a2cdf)
5+
6+
```diff
7+
@@ domains/Network.pdl:587 @@ domain Network
8+
preload
9+
SignedExchange
10+
preflight
11+
+ FedCM
12+
other
13+
# Initiator JavaScript stack trace, set for Script only.
14+
# Requires the Debugger domain to be enabled.
15+
```
16+
317
## Roll protocol to r1527314 — _2025-10-09T04:31:34.000Z_
4-
###### Diff: [`9f2ed89...f3fdb42`](https://github.com/ChromeDevTools/devtools-protocol/compare/9f2ed89...f3fdb42)
18+
###### Diff: [`9f2ed89...7c74e7d`](https://github.com/ChromeDevTools/devtools-protocol/compare/9f2ed89...7c74e7d)
519

620
```diff
721
@@ domains/Network.pdl:1267 @@ domain Network
@@ -42098,18 +42112,4 @@ index d4102f5c..6285d9b6 100644
4209842112
# Gets details for a named interest group.
4209942113
experimental command getInterestGroupDetails
4210042114
parameters
42101-
```
42102-
42103-
## Roll protocol to r1099658 — _2023-02-01T04:28:12.000Z_
42104-
###### Diff: [`2a08589...01899e6`](https://github.com/ChromeDevTools/devtools-protocol/compare/2a08589...01899e6)
42105-
42106-
```diff
42107-
@@ browser_protocol.pdl:8584 @@ domain Page
42108-
ActivationFramePolicyNotCompatible
42109-
PreloadingDisabled
42110-
BatterySaverEnabled
42111-
+ ActivatedDuringMainFrameNavigation
42112-
42113-
# Fired when a prerender attempt is completed.
42114-
experimental event prerenderAttemptCompleted
4211542115
```

json/browser_protocol.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15864,6 +15864,7 @@
1586415864
"preload",
1586515865
"SignedExchange",
1586615866
"preflight",
15867+
"FedCM",
1586715868
"other"
1586815869
]
1586915870
},

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.1527314",
3+
"version": "0.0.1528500",
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: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -587,6 +587,7 @@ domain Network
587587
preload
588588
SignedExchange
589589
preflight
590+
FedCM
590591
other
591592
# Initiator JavaScript stack trace, set for Script only.
592593
# Requires the Debugger domain to be enabled.

types/protocol.d.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12686,6 +12686,7 @@ export namespace Protocol {
1268612686
Preload = 'preload',
1268712687
SignedExchange = 'SignedExchange',
1268812688
Preflight = 'preflight',
12689+
FedCM = 'FedCM',
1268912690
Other = 'other',
1269012691
}
1269112692

@@ -12696,7 +12697,7 @@ export namespace Protocol {
1269612697
/**
1269712698
* Type of this initiator.
1269812699
*/
12699-
type: ('parser' | 'script' | 'preload' | 'SignedExchange' | 'preflight' | 'other');
12700+
type: ('parser' | 'script' | 'preload' | 'SignedExchange' | 'preflight' | 'FedCM' | 'other');
1270012701
/**
1270112702
* Initiator JavaScript stack trace, set for Script only.
1270212703
* Requires the Debugger domain to be enabled.

0 commit comments

Comments
 (0)