Skip to content

Commit 75d6311

Browse files
committed
Roll protocol to r1676914
1 parent 495a557 commit 75d6311

7 files changed

Lines changed: 54 additions & 45 deletions

File tree

changelog.md

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

22

3+
## Roll protocol to r1676914 — _2026-08-11T04:53:33.000Z_
4+
###### Diff: [`495a557...30b5360`](https://github.com/ChromeDevTools/devtools-protocol/compare/495a557...30b5360)
5+
6+
```diff
7+
@@ domains/Page.pdl:158 @@ domain Page
8+
run-ad-auction
9+
screen-wake-lock
10+
serial
11+
+ # Deprecated.
12+
shared-storage
13+
+ # Deprecated.
14+
shared-storage-select-url
15+
smart-card
16+
speaker-selection
17+
diff --git a/pdl/domains/WebAuthn.pdl b/pdl/domains/WebAuthn.pdl
18+
index 9f83b032..5e3e5d3f 100644
19+
--- a/pdl/domains/WebAuthn.pdl
20+
+++ b/pdl/domains/WebAuthn.pdl
21+
@@ -22,6 +22,7 @@ experimental domain WebAuthn
22+
ctap2_1
23+
ctap2_2
24+
25+
+ # LINT.IfChange(AuthenticatorTransport)
26+
type AuthenticatorTransport extends string
27+
enum
28+
# Cross-Platform authenticator attachments:
29+
@@ -29,8 +30,11 @@ experimental domain WebAuthn
30+
nfc
31+
ble
32+
cable
33+
+ hybrid
34+
+ smart-card
35+
# Platform authenticator attachment:
36+
internal
37+
+ # LINT.ThenChange(//content/browser/devtools/protocol/webauthn_handler.cc:ConvertToFidoTransportProtocol)
38+
39+
type VirtualAuthenticatorOptions extends object
40+
properties
41+
```
42+
343
## Roll protocol to r1676105 — _2026-08-08T04:42:45.000Z_
4-
###### Diff: [`2d019e7...a0b60c1`](https://github.com/ChromeDevTools/devtools-protocol/compare/2d019e7...a0b60c1)
44+
###### Diff: [`2d019e7...495a557`](https://github.com/ChromeDevTools/devtools-protocol/compare/2d019e7...495a557)
545

646
```diff
747
@@ domains/Page.pdl:1175 @@ domain Page
@@ -43135,44 +43175,4 @@ index 4754f17c..8dad9c98 100644
4313543175
+ optional CSSFontPaletteValuesRule cssFontPaletteValuesRule
4313643176
# Id of the first parent element that does not have display: contents.
4313743177
experimental optional DOM.NodeId parentLayoutNodeId
43138-
```
43139-
43140-
## Roll protocol to r1222075 — _2023-11-09T04:26:36.000Z_
43141-
###### Diff: [`66e9966...d21da35`](https://github.com/ChromeDevTools/devtools-protocol/compare/66e9966...d21da35)
43142-
43143-
```diff
43144-
@@ browser_protocol.pdl:11615 @@ experimental domain FedCm
43145-
SignIn
43146-
SignUp
43147-
43148-
- # Whether the dialog shown is an account chooser or an auto re-authentication dialog.
43149-
+ # The types of FedCM dialogs.
43150-
type DialogType extends string
43151-
enum
43152-
AccountChooser
43153-
AutoReauthn
43154-
ConfirmIdpLogin
43155-
43156-
+ # The buttons on the FedCM dialog.
43157-
+ type DialogButton extends string
43158-
+ enum
43159-
+ ConfirmIdpLoginContinue
43160-
+
43161-
# Corresponds to IdentityRequestAccount
43162-
type Account extends object
43163-
properties
43164-
@@ -11661,11 +11666,10 @@ experimental domain FedCm
43165-
string dialogId
43166-
integer accountIndex
43167-
43168-
- # Only valid if the dialog type is ConfirmIdpLogin. Acts as if the user had
43169-
- # clicked the continue button.
43170-
- command confirmIdpLogin
43171-
+ command clickDialogButton
43172-
parameters
43173-
string dialogId
43174-
+ DialogButton dialogButton
43175-
43176-
command dismissDialog
43177-
parameters
4317843178
```

json/browser_protocol.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30236,12 +30236,15 @@
3023630236
},
3023730237
{
3023830238
"id": "AuthenticatorTransport",
30239+
"description": "LINT.IfChange(AuthenticatorTransport)",
3023930240
"type": "string",
3024030241
"enum": [
3024130242
"usb",
3024230243
"nfc",
3024330244
"ble",
3024430245
"cable",
30246+
"hybrid",
30247+
"smart-card",
3024530248
"internal"
3024630249
]
3024730250
},

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

pdl/domains/Page.pdl

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,9 @@ domain Page
158158
run-ad-auction
159159
screen-wake-lock
160160
serial
161+
# Deprecated.
161162
shared-storage
163+
# Deprecated.
162164
shared-storage-select-url
163165
smart-card
164166
speaker-selection

pdl/domains/WebAuthn.pdl

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,15 +22,19 @@ experimental domain WebAuthn
2222
ctap2_1
2323
ctap2_2
2424

25+
# LINT.IfChange(AuthenticatorTransport)
2526
type AuthenticatorTransport extends string
2627
enum
2728
# Cross-Platform authenticator attachments:
2829
usb
2930
nfc
3031
ble
3132
cable
33+
hybrid
34+
smart-card
3235
# Platform authenticator attachment:
3336
internal
37+
# LINT.ThenChange(//content/browser/devtools/protocol/webauthn_handler.cc:ConvertToFidoTransportProtocol)
3438

3539
type VirtualAuthenticatorOptions extends object
3640
properties

types/protocol.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21786,7 +21786,7 @@ export namespace Protocol {
2178621786

2178721787
export type Ctap2Version = ('ctap2_0' | 'ctap2_1' | 'ctap2_2');
2178821788

21789-
export type AuthenticatorTransport = ('usb' | 'nfc' | 'ble' | 'cable' | 'internal');
21789+
export type AuthenticatorTransport = ('usb' | 'nfc' | 'ble' | 'cable' | 'hybrid' | 'smart-card' | 'internal');
2179021790

2179121791
export interface VirtualAuthenticatorOptions {
2179221792
protocol: AuthenticatorProtocol;

0 commit comments

Comments
 (0)