devtools-protocol 0.0.1534754 → 0.0.1538951

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.
@@ -16740,8 +16740,6 @@
16740
16740
  "Allow",
16741
16741
  "BlockFromInsecureToMorePrivate",
16742
16742
  "WarnFromInsecureToMorePrivate",
16743
- "PreflightBlock",
16744
- "PreflightWarn",
16745
16743
  "PermissionBlock",
16746
16744
  "PermissionWarn"
16747
16745
  ]
@@ -27461,36 +27459,6 @@
27461
27459
  "unknown"
27462
27460
  ]
27463
27461
  },
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
27462
  {
27495
27463
  "id": "GPUInfo",
27496
27464
  "description": "Provides information about the GPU(s) on the system.",
@@ -27539,14 +27507,6 @@
27539
27507
  "items": {
27540
27508
  "$ref": "VideoEncodeAcceleratorCapability"
27541
27509
  }
27542
- },
27543
- {
27544
- "name": "imageDecoding",
27545
- "description": "Supported accelerated image decoding capabilities.",
27546
- "type": "array",
27547
- "items": {
27548
- "$ref": "ImageDecodeAcceleratorCapability"
27549
- }
27550
27510
  }
27551
27511
  ]
27552
27512
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "devtools-protocol",
3
- "version": "0.0.1534754",
3
+ "version": "0.0.1538951",
4
4
  "description": "The Chrome DevTools Protocol JSON",
5
5
  "repository": "https://github.com/ChromeDevTools/devtools-protocol",
6
6
  "author": "The Chromium Authors",
@@ -1797,8 +1797,6 @@ domain Network
1797
1797
  Allow
1798
1798
  BlockFromInsecureToMorePrivate
1799
1799
  WarnFromInsecureToMorePrivate
1800
- PreflightBlock
1801
- PreflightWarn
1802
1800
  PermissionBlock
1803
1801
  PermissionWarn
1804
1802
 
@@ -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
@@ -13316,7 +13316,7 @@ export namespace Protocol {
13316
13316
  /**
13317
13317
  * @experimental
13318
13318
  */
13319
- export type PrivateNetworkRequestPolicy = ('Allow' | 'BlockFromInsecureToMorePrivate' | 'WarnFromInsecureToMorePrivate' | 'PreflightBlock' | 'PreflightWarn' | 'PermissionBlock' | 'PermissionWarn');
13319
+ export type PrivateNetworkRequestPolicy = ('Allow' | 'BlockFromInsecureToMorePrivate' | 'WarnFromInsecureToMorePrivate' | 'PermissionBlock' | 'PermissionWarn');
13320
13320
 
13321
13321
  /**
13322
13322
  * @experimental
@@ -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
  /**