Skip to content

Commit d71b8c6

Browse files
committed
Roll protocol to r1657692
1 parent 29e7238 commit d71b8c6

6 files changed

Lines changed: 28 additions & 18 deletions

File tree

changelog.md

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

22

3+
## Roll protocol to r1657692 — _2026-07-07T05:51:00.000Z_
4+
###### Diff: [`29e7238...08a408e`](https://github.com/ChromeDevTools/devtools-protocol/compare/29e7238...08a408e)
5+
6+
```diff
7+
@@ domains/DigitalCredentials.pdl:26 @@ experimental domain DigitalCredentials
8+
# The response data object returned by the wallet.
9+
# Required when |action| is "respond", forbidden otherwise.
10+
optional object response
11+
+ # The frame to scope the virtual wallet behavior to.
12+
+ optional Page.FrameId frameId
13+
```
14+
315
## Roll protocol to r1656784 — _2026-07-04T05:37:09.000Z_
4-
###### Diff: [`a0ec9b1...c28ddc6`](https://github.com/ChromeDevTools/devtools-protocol/compare/a0ec9b1...c28ddc6)
16+
###### Diff: [`a0ec9b1...29e7238`](https://github.com/ChromeDevTools/devtools-protocol/compare/a0ec9b1...29e7238)
517

618
```diff
719
@@ domains/DigitalCredentials.pdl:7 @@ @@ -7,7 +7,7 @@
@@ -42909,18 +42921,4 @@ index 4754f17c..8dad9c98 100644
4290942921
+ command confirmIdpLogin
4291042922
parameters
4291142923
string dialogId
42912-
```
42913-
42914-
## Roll protocol to r1203626 — _2023-09-30T04:26:42.000Z_
42915-
###### Diff: [`7cd293f...464d58a`](https://github.com/ChromeDevTools/devtools-protocol/compare/7cd293f...464d58a)
42916-
42917-
```diff
42918-
@@ browser_protocol.pdl:11322 @@ experimental domain Preload
42919-
LowEndDevice
42920-
InvalidSchemeRedirect
42921-
InvalidSchemeNavigation
42922-
- InProgressNavigation
42923-
NavigationRequestBlockedByCsp
42924-
MainFrameNavigation
42925-
MojoBinderPolicy
4292642924
```

json/browser_protocol.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10709,6 +10709,12 @@
1070910709
"description": "The response data object returned by the wallet.\nRequired when |action| is \"respond\", forbidden otherwise.",
1071010710
"optional": true,
1071110711
"type": "object"
10712+
},
10713+
{
10714+
"name": "frameId",
10715+
"description": "The frame to scope the virtual wallet behavior to.",
10716+
"optional": true,
10717+
"$ref": "Page.FrameId"
1071210718
}
1071310719
]
1071410720
}

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

pdl/domains/DigitalCredentials.pdl

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,3 +26,5 @@ experimental domain DigitalCredentials
2626
# The response data object returned by the wallet.
2727
# Required when |action| is "respond", forbidden otherwise.
2828
optional object response
29+
# The frame to scope the virtual wallet behavior to.
30+
optional Page.FrameId frameId

types/protocol.d.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9259,6 +9259,10 @@ export namespace Protocol {
92599259
* Required when |action| is "respond", forbidden otherwise.
92609260
*/
92619261
response?: any;
9262+
/**
9263+
* The frame to scope the virtual wallet behavior to.
9264+
*/
9265+
frameId?: Page.FrameId;
92629266
}
92639267
}
92649268

0 commit comments

Comments
 (0)