Skip to content

Commit 3d7bae0

Browse files
committed
Roll protocol to r1477697
1 parent b6236d7 commit 3d7bae0

5 files changed

Lines changed: 90 additions & 48 deletions

File tree

changelog.md

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

22

3+
## Roll protocol to r1477697 — _2025-06-24T04:32:08.000Z_
4+
###### Diff: [`b6236d7...acdbe1e`](https://github.com/ChromeDevTools/devtools-protocol/compare/b6236d7...acdbe1e)
5+
6+
```diff
7+
@@ browser_protocol.pdl:9720 @@ domain Page
8+
# Clears seeded compilation cache.
9+
experimental command clearCompilationCache
10+
11+
- # Enum of possible auto-response for permission / prompt dialogs.
12+
- experimental type AutoResponseMode extends string
13+
- enum
14+
- none
15+
- autoAccept
16+
- autoReject
17+
- autoOptOut
18+
-
19+
# Sets the Secure Payment Confirmation transaction mode.
20+
# https://w3c.github.io/secure-payment-confirmation/#sctn-automation-set-spc-transaction-mode
21+
experimental command setSPCTransactionMode
22+
parameters
23+
- AutoResponseMode mode
24+
+ enum mode
25+
+ none
26+
+ autoAccept
27+
+ autoChooseToAuthAnotherWay
28+
+ autoReject
29+
+ autoOptOut
30+
31+
# Extensions for Custom Handlers API:
32+
# https://html.spec.whatwg.org/multipage/system-state.html#rph-automation
33+
experimental command setRPHRegistrationMode
34+
parameters
35+
- AutoResponseMode mode
36+
+ enum mode
37+
+ none
38+
+ autoAccept
39+
+ autoReject
40+
41+
# Generates a report for testing.
42+
experimental command generateTestReport
43+
```
44+
345
## Roll protocol to r1475386 — _2025-06-18T04:31:55.000Z_
4-
###### Diff: [`f9ae1d4...30c62f4`](https://github.com/ChromeDevTools/devtools-protocol/compare/f9ae1d4...30c62f4)
46+
###### Diff: [`f9ae1d4...b6236d7`](https://github.com/ChromeDevTools/devtools-protocol/compare/f9ae1d4...b6236d7)
547

648
```diff
749
@@ browser_protocol.pdl:11541 @@ experimental domain Storage
@@ -14045,19 +14087,4 @@ index b3b97fa..6efcf78 100644
1404514087
PersistentQuotaType
1404614088
PictureSourceSrc
1404714089
PrefixedCancelAnimationFrame
14048-
```
14049-
14050-
## Roll protocol to r1049481 — _2022-09-21T04:59:07.000Z_
14051-
###### Diff: [`8f2c950...32a0581`](https://github.com/ChromeDevTools/devtools-protocol/compare/8f2c950...32a0581)
14052-
14053-
```diff
14054-
@@ browser_protocol.pdl:8466 @@ domain Page
14055-
DataSaverEnabled
14056-
HasEffectiveUrl
14057-
ActivatedBeforeStarted
14058-
+ InactivePageRestriction
14059-
+ StartFailed
14060-
14061-
# Fired when a prerender attempt is completed.
14062-
experimental event prerenderAttemptCompleted
1406314090
```

json/browser_protocol.json

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -19549,18 +19549,6 @@
1954919549
}
1955019550
]
1955119551
},
19552-
{
19553-
"id": "AutoResponseMode",
19554-
"description": "Enum of possible auto-response for permission / prompt dialogs.",
19555-
"experimental": true,
19556-
"type": "string",
19557-
"enum": [
19558-
"none",
19559-
"autoAccept",
19560-
"autoReject",
19561-
"autoOptOut"
19562-
]
19563-
},
1956419552
{
1956519553
"id": "NavigationType",
1956619554
"description": "The type of a frameNavigated event.",
@@ -21000,7 +20988,14 @@
2100020988
"parameters": [
2100120989
{
2100220990
"name": "mode",
21003-
"$ref": "AutoResponseMode"
20991+
"type": "string",
20992+
"enum": [
20993+
"none",
20994+
"autoAccept",
20995+
"autoChooseToAuthAnotherWay",
20996+
"autoReject",
20997+
"autoOptOut"
20998+
]
2100420999
}
2100521000
]
2100621001
},
@@ -21011,7 +21006,12 @@
2101121006
"parameters": [
2101221007
{
2101321008
"name": "mode",
21014-
"$ref": "AutoResponseMode"
21009+
"type": "string",
21010+
"enum": [
21011+
"none",
21012+
"autoAccept",
21013+
"autoReject"
21014+
]
2101521015
}
2101621016
]
2101721017
},

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.1475386",
3+
"version": "0.0.1477697",
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: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -9720,25 +9720,25 @@ domain Page
97209720
# Clears seeded compilation cache.
97219721
experimental command clearCompilationCache
97229722

9723-
# Enum of possible auto-response for permission / prompt dialogs.
9724-
experimental type AutoResponseMode extends string
9725-
enum
9726-
none
9727-
autoAccept
9728-
autoReject
9729-
autoOptOut
9730-
97319723
# Sets the Secure Payment Confirmation transaction mode.
97329724
# https://w3c.github.io/secure-payment-confirmation/#sctn-automation-set-spc-transaction-mode
97339725
experimental command setSPCTransactionMode
97349726
parameters
9735-
AutoResponseMode mode
9727+
enum mode
9728+
none
9729+
autoAccept
9730+
autoChooseToAuthAnotherWay
9731+
autoReject
9732+
autoOptOut
97369733

97379734
# Extensions for Custom Handlers API:
97389735
# https://html.spec.whatwg.org/multipage/system-state.html#rph-automation
97399736
experimental command setRPHRegistrationMode
97409737
parameters
9741-
AutoResponseMode mode
9738+
enum mode
9739+
none
9740+
autoAccept
9741+
autoReject
97429742

97439743
# Generates a report for testing.
97449744
experimental command generateTestReport

types/protocol.d.ts

Lines changed: 22 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -14688,11 +14688,6 @@ export namespace Protocol {
1468814688
themeColor?: string;
1468914689
}
1469014690

14691-
/**
14692-
* Enum of possible auto-response for permission / prompt dialogs.
14693-
*/
14694-
export type AutoResponseMode = ('none' | 'autoAccept' | 'autoReject' | 'autoOptOut');
14695-
1469614691
/**
1469714692
* The type of a frameNavigated event.
1469814693
*/
@@ -15485,12 +15480,32 @@ export namespace Protocol {
1548515480
data: string;
1548615481
}
1548715482

15483+
export const enum SetSPCTransactionModeRequestMode {
15484+
None = 'none',
15485+
AutoAccept = 'autoAccept',
15486+
AutoChooseToAuthAnotherWay = 'autoChooseToAuthAnotherWay',
15487+
AutoReject = 'autoReject',
15488+
AutoOptOut = 'autoOptOut',
15489+
}
15490+
1548815491
export interface SetSPCTransactionModeRequest {
15489-
mode: AutoResponseMode;
15492+
/**
15493+
* (SetSPCTransactionModeRequestMode enum)
15494+
*/
15495+
mode: ('none' | 'autoAccept' | 'autoChooseToAuthAnotherWay' | 'autoReject' | 'autoOptOut');
15496+
}
15497+
15498+
export const enum SetRPHRegistrationModeRequestMode {
15499+
None = 'none',
15500+
AutoAccept = 'autoAccept',
15501+
AutoReject = 'autoReject',
1549015502
}
1549115503

1549215504
export interface SetRPHRegistrationModeRequest {
15493-
mode: AutoResponseMode;
15505+
/**
15506+
* (SetRPHRegistrationModeRequestMode enum)
15507+
*/
15508+
mode: ('none' | 'autoAccept' | 'autoReject');
1549415509
}
1549515510

1549615511
export interface GenerateTestReportRequest {

0 commit comments

Comments
 (0)