Skip to content

Commit b8a7fa7

Browse files
committed
Roll protocol to r1537100
1 parent 604a9f6 commit b8a7fa7

File tree

6 files changed

+39
-136
lines changed

6 files changed

+39
-136
lines changed

changelog.md

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

22

3+
## Roll protocol to r1537100 — _2025-10-29T04:32:32.000Z_
4+
###### Diff: [`604a9f6...d3e13c1`](https://github.com/ChromeDevTools/devtools-protocol/compare/604a9f6...d3e13c1)
5+
6+
```diff
7+
@@ domains/SystemInfo.pdl:74 @@ experimental domain SystemInfo
8+
webp
9+
unknown
10+
11+
- # Describes a supported image decoding profile with its associated minimum and
12+
- # maximum resolutions and subsampling.
13+
- type ImageDecodeAcceleratorCapability extends object
14+
- properties
15+
- # Image coded, e.g. Jpeg.
16+
- ImageType imageType
17+
- # Maximum supported dimensions of the image in pixels.
18+
- Size maxDimensions
19+
- # Minimum supported dimensions of the image in pixels.
20+
- Size minDimensions
21+
- # Optional array of supported subsampling formats, e.g. 4:2:0, if known.
22+
- array of SubsamplingFormat subsamplings
23+
-
24+
# Provides information about the GPU(s) on the system.
25+
type GPUInfo extends object
26+
properties
27+
@@ -102,8 +89,6 @@ experimental domain SystemInfo
28+
array of VideoDecodeAcceleratorCapability videoDecoding
29+
# Supported accelerated video encoding capabilities.
30+
array of VideoEncodeAcceleratorCapability videoEncoding
31+
- # Supported accelerated image decoding capabilities.
32+
- array of ImageDecodeAcceleratorCapability imageDecoding
33+
34+
# Represents process info.
35+
type ProcessInfo extends object
36+
```
37+
338
## Roll protocol to r1534754 — _2025-10-24T04:31:25.000Z_
4-
###### Diff: [`d2b130f...a5ba850`](https://github.com/ChromeDevTools/devtools-protocol/compare/d2b130f...a5ba850)
39+
###### Diff: [`d2b130f...604a9f6`](https://github.com/ChromeDevTools/devtools-protocol/compare/d2b130f...604a9f6)
540

641
```diff
742
@@ domains/Network.pdl:1929 @@ domain Network
@@ -42056,56 +42091,4 @@ index d4102f5c..6285d9b6 100644
4205642091
command getDocument
4205742092
parameters
4205842093
# The maximum depth at which children should be retrieved, defaults to 1. Use -1 for the
42059-
```
42060-
42061-
## Roll protocol to r1101985 — _2023-02-07T04:28:15.000Z_
42062-
###### Diff: [`81bd251...e088ea1`](https://github.com/ChromeDevTools/devtools-protocol/compare/81bd251...e088ea1)
42063-
42064-
```diff
42065-
@@ browser_protocol.pdl:7735 @@ domain Page
42066-
returns
42067-
array of InstallabilityError installabilityErrors
42068-
42069-
- experimental command getManifestIcons
42070-
+ # Deprecated because it's not guaranteed that the returned icon is in fact the one used for PWA installation.
42071-
+ experimental deprecated command getManifestIcons
42072-
returns
42073-
optional binary primaryIcon
42074-
42075-
@@ -8149,24 +8150,25 @@ domain Page
42076-
# Clears seeded compilation cache.
42077-
experimental command clearCompilationCache
42078-
42079-
- # Sets the Secure Payment Confirmation transaction mode.
42080-
+ # Enum of possible auto-reponse for permisison / prompt dialogs.
42081-
+ experimental type AutoResponseMode extends string
42082-
+ enum
42083-
+ none
42084-
+ autoAccept
42085-
+ autoReject
42086-
+ autoOptOut
42087-
+
42088-
+# Sets the Secure Payment Confirmation transaction mode.
42089-
# https://w3c.github.io/secure-payment-confirmation/#sctn-automation-set-spc-transaction-mode
42090-
experimental command setSPCTransactionMode
42091-
parameters
42092-
- enum mode
42093-
- none
42094-
- autoAccept
42095-
- autoReject
42096-
- autoOptOut
42097-
+ AutoResponseMode mode
42098-
42099-
# Extensions for Custom Handlers API:
42100-
# https://html.spec.whatwg.org/multipage/system-state.html#rph-automation
42101-
experimental command setRPHRegistrationMode
42102-
parameters
42103-
- enum mode
42104-
- none
42105-
- autoaccept
42106-
- autoreject
42107-
+ AutoResponseMode mode
42108-
42109-
# Generates a report for testing.
42110-
experimental command generateTestReport
4211142094
```

json/browser_protocol.json

Lines changed: 0 additions & 38 deletions
Original file line numberDiff line numberDiff line change
@@ -27461,36 +27461,6 @@
2746127461
"unknown"
2746227462
]
2746327463
},
27464-
{
27465-
"id": "ImageDecodeAcceleratorCapability",
27466-
"description": "Describes a supported image decoding profile with its associated minimum and\nmaximum resolutions and subsampling.",
27467-
"type": "object",
27468-
"properties": [
27469-
{
27470-
"name": "imageType",
27471-
"description": "Image coded, e.g. Jpeg.",
27472-
"$ref": "ImageType"
27473-
},
27474-
{
27475-
"name": "maxDimensions",
27476-
"description": "Maximum supported dimensions of the image in pixels.",
27477-
"$ref": "Size"
27478-
},
27479-
{
27480-
"name": "minDimensions",
27481-
"description": "Minimum supported dimensions of the image in pixels.",
27482-
"$ref": "Size"
27483-
},
27484-
{
27485-
"name": "subsamplings",
27486-
"description": "Optional array of supported subsampling formats, e.g. 4:2:0, if known.",
27487-
"type": "array",
27488-
"items": {
27489-
"$ref": "SubsamplingFormat"
27490-
}
27491-
}
27492-
]
27493-
},
2749427464
{
2749527465
"id": "GPUInfo",
2749627466
"description": "Provides information about the GPU(s) on the system.",
@@ -27539,14 +27509,6 @@
2753927509
"items": {
2754027510
"$ref": "VideoEncodeAcceleratorCapability"
2754127511
}
27542-
},
27543-
{
27544-
"name": "imageDecoding",
27545-
"description": "Supported accelerated image decoding capabilities.",
27546-
"type": "array",
27547-
"items": {
27548-
"$ref": "ImageDecodeAcceleratorCapability"
27549-
}
2755027512
}
2755127513
]
2755227514
},

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

pdl/domains/SystemInfo.pdl

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -74,19 +74,6 @@ experimental domain SystemInfo
7474
webp
7575
unknown
7676

77-
# Describes a supported image decoding profile with its associated minimum and
78-
# maximum resolutions and subsampling.
79-
type ImageDecodeAcceleratorCapability extends object
80-
properties
81-
# Image coded, e.g. Jpeg.
82-
ImageType imageType
83-
# Maximum supported dimensions of the image in pixels.
84-
Size maxDimensions
85-
# Minimum supported dimensions of the image in pixels.
86-
Size minDimensions
87-
# Optional array of supported subsampling formats, e.g. 4:2:0, if known.
88-
array of SubsamplingFormat subsamplings
89-
9077
# Provides information about the GPU(s) on the system.
9178
type GPUInfo extends object
9279
properties
@@ -102,8 +89,6 @@ experimental domain SystemInfo
10289
array of VideoDecodeAcceleratorCapability videoDecoding
10390
# Supported accelerated video encoding capabilities.
10491
array of VideoEncodeAcceleratorCapability videoEncoding
105-
# Supported accelerated image decoding capabilities.
106-
array of ImageDecodeAcceleratorCapability imageDecoding
10792

10893
# Represents process info.
10994
type ProcessInfo extends object

types/protocol.d.ts

Lines changed: 0 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -19878,29 +19878,6 @@ export namespace Protocol {
1987819878
*/
1987919879
export type ImageType = ('jpeg' | 'webp' | 'unknown');
1988019880

19881-
/**
19882-
* Describes a supported image decoding profile with its associated minimum and
19883-
* maximum resolutions and subsampling.
19884-
*/
19885-
export interface ImageDecodeAcceleratorCapability {
19886-
/**
19887-
* Image coded, e.g. Jpeg.
19888-
*/
19889-
imageType: ImageType;
19890-
/**
19891-
* Maximum supported dimensions of the image in pixels.
19892-
*/
19893-
maxDimensions: Size;
19894-
/**
19895-
* Minimum supported dimensions of the image in pixels.
19896-
*/
19897-
minDimensions: Size;
19898-
/**
19899-
* Optional array of supported subsampling formats, e.g. 4:2:0, if known.
19900-
*/
19901-
subsamplings: SubsamplingFormat[];
19902-
}
19903-
1990419881
/**
1990519882
* Provides information about the GPU(s) on the system.
1990619883
*/
@@ -19929,10 +19906,6 @@ export namespace Protocol {
1992919906
* Supported accelerated video encoding capabilities.
1993019907
*/
1993119908
videoEncoding: VideoEncodeAcceleratorCapability[];
19932-
/**
19933-
* Supported accelerated image decoding capabilities.
19934-
*/
19935-
imageDecoding: ImageDecodeAcceleratorCapability[];
1993619909
}
1993719910

1993819911
/**

0 commit comments

Comments
 (0)