Skip to content

Commit d90a8a2

Browse files
committed
Roll protocol to r1558402
1 parent ab59de7 commit d90a8a2

File tree

7 files changed

+52
-63
lines changed

7 files changed

+52
-63
lines changed

changelog.md

Lines changed: 30 additions & 59 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,36 @@
11

22

3+
## Roll protocol to r1558402 — _2025-12-13T04:32:36.000Z_
4+
###### Diff: [`ab59de7...0d8f2df`](https://github.com/ChromeDevTools/devtools-protocol/compare/ab59de7...0d8f2df)
5+
6+
```diff
7+
@@ domains/Browser.pdl:49 @@ domain Browser
8+
idleDetection
9+
keyboardLock
10+
localFonts
11+
+ localNetwork
12+
localNetworkAccess
13+
+ loopbackNetwork
14+
midi
15+
midiSysex
16+
nfc
17+
diff --git a/pdl/domains/Target.pdl b/pdl/domains/Target.pdl
18+
index d61ab3ca..8d8ead63 100644
19+
--- a/pdl/domains/Target.pdl
20+
+++ b/pdl/domains/Target.pdl
21+
@@ -132,6 +132,8 @@ domain Target
22+
returns
23+
# An array of browser context ids.
24+
array of Browser.BrowserContextID browserContextIds
25+
+ # The id of the default browser context if available.
26+
+ experimental optional Browser.BrowserContextID defaultBrowserContextId
27+
28+
# Creates a new page.
29+
command createTarget
30+
```
31+
332
## Roll protocol to r1557841 — _2025-12-12T04:33:57.000Z_
4-
###### Diff: [`6a7ac7d...dc3f099`](https://github.com/ChromeDevTools/devtools-protocol/compare/6a7ac7d...dc3f099)
33+
###### Diff: [`6a7ac7d...ab59de7`](https://github.com/ChromeDevTools/devtools-protocol/compare/6a7ac7d...ab59de7)
534

635
```diff
736
@@ domains/Audits.pdl:412 @@ experimental domain Audits
@@ -42077,62 +42106,4 @@ index 0dbdc01d..7a3c772c 100644
4207742106
# Parent stylesheet's origin.
4207842107
StyleSheetOrigin origin
4207942108
# Associated style declaration.
42080-
```
42081-
42082-
## Roll protocol to r1116775 — _2023-03-14T04:28:31.000Z_
42083-
###### Diff: [`bc17667...4e13b66`](https://github.com/ChromeDevTools/devtools-protocol/compare/bc17667...4e13b66)
42084-
42085-
```diff
42086-
@@ browser_protocol.pdl:712 @@ experimental domain Audits
42087-
SourceAndTriggerHeaders
42088-
SourceIgnored
42089-
TriggerIgnored
42090-
+ OsSourceIgnored
42091-
+ OsTriggerIgnored
42092-
+ InvalidRegisterOsSourceHeader
42093-
+ InvalidRegisterOsTriggerHeader
42094-
+ WebAndOsHeaders
42095-
42096-
# Details for issues around "Attribution Reporting API" usage.
42097-
# Explainer: https://github.com/WICG/attribution-reporting-api
42098-
@@ -10900,6 +10905,13 @@ experimental domain Preload
42099-
42100-
# This domain allows interacting with the FedCM dialog.
42101-
experimental domain FedCm
42102-
+ # Whether this is a sign-up or sign-in action for this account, i.e.
42103-
+ # whether this account has ever been used to sign in to this RP before.
42104-
+ type LoginState extends string
42105-
+ enum
42106-
+ SignIn
42107-
+ SignUp
42108-
+
42109-
# Corresponds to IdentityRequestAccount
42110-
type Account extends object
42111-
properties
42112-
@@ -10909,10 +10921,25 @@ experimental domain FedCm
42113-
string givenName
42114-
string pictureUrl
42115-
string idpConfigUrl
42116-
+ string idpSigninUrl
42117-
+ LoginState loginState
42118-
+ # These two are only set if the loginState is signUp
42119-
+ optional string termsOfServiceUrl
42120-
+ optional string privacyPolicyUrl
42121-
42122-
event dialogShown
42123-
parameters
42124-
+ string dialogId
42125-
array of Account accounts
42126-
42127-
command enable
42128-
command disable
42129-
+
42130-
+ command selectAccount
42131-
+ parameters
42132-
+ string dialogId
42133-
+ integer accountIndex
42134-
+
42135-
+ command dismissDialog
42136-
+ parameters
42137-
+ string dialogId
4213842109
```

json/browser_protocol.json

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3469,7 +3469,9 @@
34693469
"idleDetection",
34703470
"keyboardLock",
34713471
"localFonts",
3472+
"localNetwork",
34723473
"localNetworkAccess",
3474+
"loopbackNetwork",
34733475
"midi",
34743476
"midiSysex",
34753477
"nfc",
@@ -28040,6 +28042,13 @@
2804028042
"items": {
2804128043
"$ref": "Browser.BrowserContextID"
2804228044
}
28045+
},
28046+
{
28047+
"name": "defaultBrowserContextId",
28048+
"description": "The id of the default browser context if available.",
28049+
"experimental": true,
28050+
"optional": true,
28051+
"$ref": "Browser.BrowserContextID"
2804328052
}
2804428053
]
2804528054
},

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

pdl/domains/Browser.pdl

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,9 @@ domain Browser
4949
idleDetection
5050
keyboardLock
5151
localFonts
52+
localNetwork
5253
localNetworkAccess
54+
loopbackNetwork
5355
midi
5456
midiSysex
5557
nfc

pdl/domains/Target.pdl

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -132,6 +132,8 @@ domain Target
132132
returns
133133
# An array of browser context ids.
134134
array of Browser.BrowserContextID browserContextIds
135+
# The id of the default browser context if available.
136+
experimental optional Browser.BrowserContextID defaultBrowserContextId
135137

136138
# Creates a new page.
137139
command createTarget

types/protocol.d.ts

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4559,7 +4559,7 @@ export namespace Protocol {
45594559
/**
45604560
* @experimental
45614561
*/
4562-
export type PermissionType = ('ar' | 'audioCapture' | 'automaticFullscreen' | 'backgroundFetch' | 'backgroundSync' | 'cameraPanTiltZoom' | 'capturedSurfaceControl' | 'clipboardReadWrite' | 'clipboardSanitizedWrite' | 'displayCapture' | 'durableStorage' | 'geolocation' | 'handTracking' | 'idleDetection' | 'keyboardLock' | 'localFonts' | 'localNetworkAccess' | 'midi' | 'midiSysex' | 'nfc' | 'notifications' | 'paymentHandler' | 'periodicBackgroundSync' | 'pointerLock' | 'protectedMediaIdentifier' | 'sensors' | 'smartCard' | 'speakerSelection' | 'storageAccess' | 'topLevelStorageAccess' | 'videoCapture' | 'vr' | 'wakeLockScreen' | 'wakeLockSystem' | 'webAppInstallation' | 'webPrinting' | 'windowManagement');
4562+
export type PermissionType = ('ar' | 'audioCapture' | 'automaticFullscreen' | 'backgroundFetch' | 'backgroundSync' | 'cameraPanTiltZoom' | 'capturedSurfaceControl' | 'clipboardReadWrite' | 'clipboardSanitizedWrite' | 'displayCapture' | 'durableStorage' | 'geolocation' | 'handTracking' | 'idleDetection' | 'keyboardLock' | 'localFonts' | 'localNetwork' | 'localNetworkAccess' | 'loopbackNetwork' | 'midi' | 'midiSysex' | 'nfc' | 'notifications' | 'paymentHandler' | 'periodicBackgroundSync' | 'pointerLock' | 'protectedMediaIdentifier' | 'sensors' | 'smartCard' | 'speakerSelection' | 'storageAccess' | 'topLevelStorageAccess' | 'videoCapture' | 'vr' | 'wakeLockScreen' | 'wakeLockSystem' | 'webAppInstallation' | 'webPrinting' | 'windowManagement');
45634563

45644564
/**
45654565
* @experimental
@@ -20244,6 +20244,11 @@ export namespace Protocol {
2024420244
* An array of browser context ids.
2024520245
*/
2024620246
browserContextIds: Browser.BrowserContextID[];
20247+
/**
20248+
* The id of the default browser context if available.
20249+
* @experimental
20250+
*/
20251+
defaultBrowserContextId?: Browser.BrowserContextID;
2024720252
}
2024820253

2024920254
export interface CreateTargetRequest {

0 commit comments

Comments
 (0)