Skip to content

Commit f9ae1d4

Browse files
committed
Roll protocol to r1473885
1 parent 048403a commit f9ae1d4

File tree

5 files changed

+47
-50
lines changed

5 files changed

+47
-50
lines changed

changelog.md

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

22

3+
## Roll protocol to r1473885 — _2025-06-14T04:31:36.000Z_
4+
###### Diff: [`048403a...3b68dfa`](https://github.com/ChromeDevTools/devtools-protocol/compare/048403a...3b68dfa)
5+
6+
```diff
7+
@@ browser_protocol.pdl:4467 @@ domain Emulation
8+
pause
9+
pauseIfNetworkFetchesPending
10+
11+
- # Used to specify User Agent form-factor values. See https://wicg.github.io/ua-client-hints/#sec-ch-ua-form-factors
12+
- experimental type UserAgentFormFactor extends string
13+
- enum
14+
- Desktop
15+
- Automotive
16+
- Mobile
17+
- Tablet
18+
- XR
19+
- EInk
20+
- Watch
21+
-
22+
# Used to specify User Agent Client Hints to emulate. See https://wicg.github.io/ua-client-hints
23+
experimental type UserAgentBrandVersion extends object
24+
properties
25+
@@ -4500,7 +4489,9 @@ domain Emulation
26+
boolean mobile
27+
optional string bitness
28+
optional boolean wow64
29+
- optional array of UserAgentFormFactor formFactors
30+
+ # Used to specify User Agent form-factor values.
31+
+ # See https://wicg.github.io/ua-client-hints/#sec-ch-ua-form-factors
32+
+ optional array of string formFactors
33+
34+
# Used to specify sensor types to emulate.
35+
# See https://w3c.github.io/sensors/#automation for more information.
36+
```
37+
338
## Roll protocol to r1473367 — _2025-06-13T04:31:57.000Z_
4-
###### Diff: [`8991629...e076b98`](https://github.com/ChromeDevTools/devtools-protocol/compare/8991629...e076b98)
39+
###### Diff: [`8991629...048403a`](https://github.com/ChromeDevTools/devtools-protocol/compare/8991629...048403a)
540

641
```diff
742
@@ browser_protocol.pdl:6931 @@ domain Network
@@ -14006,18 +14041,4 @@ index 8d8211b..2d56043 100644
1400614041

1400714042
command startTrackingHeapObjects
1400814043
parameters
14009-
```
14010-
14011-
## Roll protocol to r1048352 — _2022-09-17T04:46:41.000Z_
14012-
###### Diff: [`f628653...8fd85c8`](https://github.com/ChromeDevTools/devtools-protocol/compare/f628653...8fd85c8)
14013-
14014-
```diff
14015-
@@ browser_protocol.pdl:772 @@ experimental domain Audits
14016-
HostCandidateAttributeGetter
14017-
IdentityInCanMakePaymentEvent
14018-
InsecurePrivateNetworkSubresourceRequest
14019-
- LegacyConstraintGoogIPv6
14020-
LocalCSSFileExtensionRejected
14021-
MediaSourceAbortRemove
14022-
MediaSourceDurationTruncatingBuffered
1402314044
```

json/browser_protocol.json

Lines changed: 2 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -9617,21 +9617,6 @@
96179617
"pauseIfNetworkFetchesPending"
96189618
]
96199619
},
9620-
{
9621-
"id": "UserAgentFormFactor",
9622-
"description": "Used to specify User Agent form-factor values. See https://wicg.github.io/ua-client-hints/#sec-ch-ua-form-factors",
9623-
"experimental": true,
9624-
"type": "string",
9625-
"enum": [
9626-
"Desktop",
9627-
"Automotive",
9628-
"Mobile",
9629-
"Tablet",
9630-
"XR",
9631-
"EInk",
9632-
"Watch"
9633-
]
9634-
},
96359620
{
96369621
"id": "UserAgentBrandVersion",
96379622
"description": "Used to specify User Agent Client Hints to emulate. See https://wicg.github.io/ua-client-hints",
@@ -9710,10 +9695,11 @@
97109695
},
97119696
{
97129697
"name": "formFactors",
9698+
"description": "Used to specify User Agent form-factor values.\nSee https://wicg.github.io/ua-client-hints/#sec-ch-ua-form-factors",
97139699
"optional": true,
97149700
"type": "array",
97159701
"items": {
9716-
"$ref": "UserAgentFormFactor"
9702+
"type": "string"
97179703
}
97189704
}
97199705
]

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.1473367",
3+
"version": "0.0.1473885",
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: 3 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -4467,17 +4467,6 @@ domain Emulation
44674467
pause
44684468
pauseIfNetworkFetchesPending
44694469

4470-
# Used to specify User Agent form-factor values. See https://wicg.github.io/ua-client-hints/#sec-ch-ua-form-factors
4471-
experimental type UserAgentFormFactor extends string
4472-
enum
4473-
Desktop
4474-
Automotive
4475-
Mobile
4476-
Tablet
4477-
XR
4478-
EInk
4479-
Watch
4480-
44814470
# Used to specify User Agent Client Hints to emulate. See https://wicg.github.io/ua-client-hints
44824471
experimental type UserAgentBrandVersion extends object
44834472
properties
@@ -4500,7 +4489,9 @@ domain Emulation
45004489
boolean mobile
45014490
optional string bitness
45024491
optional boolean wow64
4503-
optional array of UserAgentFormFactor formFactors
4492+
# Used to specify User Agent form-factor values.
4493+
# See https://wicg.github.io/ua-client-hints/#sec-ch-ua-form-factors
4494+
optional array of string formFactors
45044495

45054496
# Used to specify sensor types to emulate.
45064497
# See https://w3c.github.io/sensors/#automation for more information.

types/protocol.d.ts

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8536,11 +8536,6 @@ export namespace Protocol {
85368536
*/
85378537
export type VirtualTimePolicy = ('advance' | 'pause' | 'pauseIfNetworkFetchesPending');
85388538

8539-
/**
8540-
* Used to specify User Agent form-factor values. See https://wicg.github.io/ua-client-hints/#sec-ch-ua-form-factors
8541-
*/
8542-
export type UserAgentFormFactor = ('Desktop' | 'Automotive' | 'Mobile' | 'Tablet' | 'XR' | 'EInk' | 'Watch');
8543-
85448539
/**
85458540
* Used to specify User Agent Client Hints to emulate. See https://wicg.github.io/ua-client-hints
85468541
*/
@@ -8570,7 +8565,11 @@ export namespace Protocol {
85708565
mobile: boolean;
85718566
bitness?: string;
85728567
wow64?: boolean;
8573-
formFactors?: UserAgentFormFactor[];
8568+
/**
8569+
* Used to specify User Agent form-factor values.
8570+
* See https://wicg.github.io/ua-client-hints/#sec-ch-ua-form-factors
8571+
*/
8572+
formFactors?: string[];
85748573
}
85758574

85768575
/**

0 commit comments

Comments
 (0)