devtools-protocol 0.0.1534754 → 0.0.1537100

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -27461,36 +27461,6 @@
27461
27461
  "unknown"
27462
27462
  ]
27463
27463
  },
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
- },
27494
27464
  {
27495
27465
  "id": "GPUInfo",
27496
27466
  "description": "Provides information about the GPU(s) on the system.",
@@ -27539,14 +27509,6 @@
27539
27509
  "items": {
27540
27510
  "$ref": "VideoEncodeAcceleratorCapability"
27541
27511
  }
27542
- },
27543
- {
27544
- "name": "imageDecoding",
27545
- "description": "Supported accelerated image decoding capabilities.",
27546
- "type": "array",
27547
- "items": {
27548
- "$ref": "ImageDecodeAcceleratorCapability"
27549
- }
27550
27512
  }
27551
27513
  ]
27552
27514
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "devtools-protocol",
3
- "version": "0.0.1534754",
3
+ "version": "0.0.1537100",
4
4
  "description": "The Chrome DevTools Protocol JSON",
5
5
  "repository": "https://github.com/ChromeDevTools/devtools-protocol",
6
6
  "author": "The Chromium Authors",
@@ -74,19 +74,6 @@ experimental domain SystemInfo
74
74
  webp
75
75
  unknown
76
76
 
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
-
90
77
  # Provides information about the GPU(s) on the system.
91
78
  type GPUInfo extends object
92
79
  properties
@@ -102,8 +89,6 @@ experimental domain SystemInfo
102
89
  array of VideoDecodeAcceleratorCapability videoDecoding
103
90
  # Supported accelerated video encoding capabilities.
104
91
  array of VideoEncodeAcceleratorCapability videoEncoding
105
- # Supported accelerated image decoding capabilities.
106
- array of ImageDecodeAcceleratorCapability imageDecoding
107
92
 
108
93
  # Represents process info.
109
94
  type ProcessInfo extends object
@@ -19878,29 +19878,6 @@ export namespace Protocol {
19878
19878
  */
19879
19879
  export type ImageType = ('jpeg' | 'webp' | 'unknown');
19880
19880
 
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
-
19904
19881
  /**
19905
19882
  * Provides information about the GPU(s) on the system.
19906
19883
  */
@@ -19929,10 +19906,6 @@ export namespace Protocol {
19929
19906
  * Supported accelerated video encoding capabilities.
19930
19907
  */
19931
19908
  videoEncoding: VideoEncodeAcceleratorCapability[];
19932
- /**
19933
- * Supported accelerated image decoding capabilities.
19934
- */
19935
- imageDecoding: ImageDecodeAcceleratorCapability[];
19936
19909
  }
19937
19910
 
19938
19911
  /**