devtools-protocol 0.0.1005560 → 0.0.1007088

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.
@@ -1591,7 +1591,6 @@
1591
1591
  "RTCPeerConnectionComplexPlanBSdpUsingDefaultSdpSemantics",
1592
1592
  "RTCPeerConnectionSdpSemanticsPlanB",
1593
1593
  "RtcpMuxPolicyNegotiate",
1594
- "RTPDataChannel",
1595
1594
  "SharedArrayBufferConstructedWithoutIsolation",
1596
1595
  "TextToSpeech_DisallowedByAutoplay",
1597
1596
  "V8SharedArrayBufferConstructedInExtensionWithoutIsolation",
@@ -8305,6 +8304,17 @@
8305
8304
  }
8306
8305
  ]
8307
8306
  },
8307
+ {
8308
+ "name": "setHardwareConcurrencyOverride",
8309
+ "experimental": true,
8310
+ "parameters": [
8311
+ {
8312
+ "name": "hardwareConcurrency",
8313
+ "description": "Hardware concurrency to report",
8314
+ "type": "integer"
8315
+ }
8316
+ ]
8317
+ },
8308
8318
  {
8309
8319
  "name": "setUserAgentOverride",
8310
8320
  "description": "Allows overriding user agent with the given string.",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "devtools-protocol",
3
- "version": "0.0.1005560",
3
+ "version": "0.0.1007088",
4
4
  "description": "The Chrome DevTools Protocol JSON",
5
5
  "repository": "https://github.com/ChromeDevTools/devtools-protocol",
6
6
  "author": "The Chromium Authors",
@@ -785,7 +785,6 @@ experimental domain Audits
785
785
  RTCPeerConnectionComplexPlanBSdpUsingDefaultSdpSemantics
786
786
  RTCPeerConnectionSdpSemanticsPlanB
787
787
  RtcpMuxPolicyNegotiate
788
- RTPDataChannel
789
788
  SharedArrayBufferConstructedWithoutIsolation
790
789
  TextToSpeech_DisallowedByAutoplay
791
790
  V8SharedArrayBufferConstructedInExtensionWithoutIsolation
@@ -3808,6 +3807,11 @@ domain Emulation
3808
3807
  # Image types to disable.
3809
3808
  array of DisabledImageType imageTypes
3810
3809
 
3810
+ experimental command setHardwareConcurrencyOverride
3811
+ parameters
3812
+ # Hardware concurrency to report
3813
+ integer hardwareConcurrency
3814
+
3811
3815
  # Allows overriding user agent with the given string.
3812
3816
  command setUserAgentOverride
3813
3817
  parameters
@@ -2565,6 +2565,10 @@ export namespace ProtocolMapping {
2565
2565
  paramsType: [Protocol.Emulation.SetDisabledImageTypesRequest];
2566
2566
  returnType: void;
2567
2567
  };
2568
+ 'Emulation.setHardwareConcurrencyOverride': {
2569
+ paramsType: [Protocol.Emulation.SetHardwareConcurrencyOverrideRequest];
2570
+ returnType: void;
2571
+ };
2568
2572
  /**
2569
2573
  * Allows overriding user agent with the given string.
2570
2574
  */
@@ -1782,6 +1782,8 @@ export namespace ProtocolProxyApi {
1782
1782
 
1783
1783
  setDisabledImageTypes(params: Protocol.Emulation.SetDisabledImageTypesRequest): Promise<void>;
1784
1784
 
1785
+ setHardwareConcurrencyOverride(params: Protocol.Emulation.SetHardwareConcurrencyOverrideRequest): Promise<void>;
1786
+
1785
1787
  /**
1786
1788
  * Allows overriding user agent with the given string.
1787
1789
  */
@@ -3378,7 +3378,7 @@ export namespace Protocol {
3378
3378
  frameId?: Page.FrameId;
3379
3379
  }
3380
3380
 
3381
- export type DeprecationIssueType = ('AuthorizationCoveredByWildcard' | 'CanRequestURLHTTPContainingNewline' | 'ChromeLoadTimesConnectionInfo' | 'ChromeLoadTimesFirstPaintAfterLoadTime' | 'ChromeLoadTimesWasAlternateProtocolAvailable' | 'CookieWithTruncatingChar' | 'CrossOriginAccessBasedOnDocumentDomain' | 'CrossOriginWindowAlert' | 'CrossOriginWindowConfirm' | 'CSSSelectorInternalMediaControlsOverlayCastButton' | 'DeprecationExample' | 'DocumentDomainSettingWithoutOriginAgentClusterHeader' | 'EventPath' | 'GeolocationInsecureOrigin' | 'GeolocationInsecureOriginDeprecatedNotRemoved' | 'GetUserMediaInsecureOrigin' | 'HostCandidateAttributeGetter' | 'InsecurePrivateNetworkSubresourceRequest' | 'LegacyConstraintGoogIPv6' | 'LocalCSSFileExtensionRejected' | 'MediaSourceAbortRemove' | 'MediaSourceDurationTruncatingBuffered' | 'NoSysexWebMIDIWithoutPermission' | 'NotificationInsecureOrigin' | 'NotificationPermissionRequestedIframe' | 'ObsoleteWebRtcCipherSuite' | 'PaymentRequestBasicCard' | 'PictureSourceSrc' | 'PrefixedCancelAnimationFrame' | 'PrefixedRequestAnimationFrame' | 'PrefixedStorageInfo' | 'PrefixedVideoDisplayingFullscreen' | 'PrefixedVideoEnterFullscreen' | 'PrefixedVideoEnterFullScreen' | 'PrefixedVideoExitFullscreen' | 'PrefixedVideoExitFullScreen' | 'PrefixedVideoSupportsFullscreen' | 'RangeExpand' | 'RequestedSubresourceWithEmbeddedCredentials' | 'RTCConstraintEnableDtlsSrtpFalse' | 'RTCConstraintEnableDtlsSrtpTrue' | 'RTCPeerConnectionComplexPlanBSdpUsingDefaultSdpSemantics' | 'RTCPeerConnectionSdpSemanticsPlanB' | 'RtcpMuxPolicyNegotiate' | 'RTPDataChannel' | 'SharedArrayBufferConstructedWithoutIsolation' | 'TextToSpeech_DisallowedByAutoplay' | 'V8SharedArrayBufferConstructedInExtensionWithoutIsolation' | 'XHRJSONEncodingDetection' | 'XMLHttpRequestSynchronousInNonWorkerOutsideBeforeUnload' | 'XRSupportsSession');
3381
+ export type DeprecationIssueType = ('AuthorizationCoveredByWildcard' | 'CanRequestURLHTTPContainingNewline' | 'ChromeLoadTimesConnectionInfo' | 'ChromeLoadTimesFirstPaintAfterLoadTime' | 'ChromeLoadTimesWasAlternateProtocolAvailable' | 'CookieWithTruncatingChar' | 'CrossOriginAccessBasedOnDocumentDomain' | 'CrossOriginWindowAlert' | 'CrossOriginWindowConfirm' | 'CSSSelectorInternalMediaControlsOverlayCastButton' | 'DeprecationExample' | 'DocumentDomainSettingWithoutOriginAgentClusterHeader' | 'EventPath' | 'GeolocationInsecureOrigin' | 'GeolocationInsecureOriginDeprecatedNotRemoved' | 'GetUserMediaInsecureOrigin' | 'HostCandidateAttributeGetter' | 'InsecurePrivateNetworkSubresourceRequest' | 'LegacyConstraintGoogIPv6' | 'LocalCSSFileExtensionRejected' | 'MediaSourceAbortRemove' | 'MediaSourceDurationTruncatingBuffered' | 'NoSysexWebMIDIWithoutPermission' | 'NotificationInsecureOrigin' | 'NotificationPermissionRequestedIframe' | 'ObsoleteWebRtcCipherSuite' | 'PaymentRequestBasicCard' | 'PictureSourceSrc' | 'PrefixedCancelAnimationFrame' | 'PrefixedRequestAnimationFrame' | 'PrefixedStorageInfo' | 'PrefixedVideoDisplayingFullscreen' | 'PrefixedVideoEnterFullscreen' | 'PrefixedVideoEnterFullScreen' | 'PrefixedVideoExitFullscreen' | 'PrefixedVideoExitFullScreen' | 'PrefixedVideoSupportsFullscreen' | 'RangeExpand' | 'RequestedSubresourceWithEmbeddedCredentials' | 'RTCConstraintEnableDtlsSrtpFalse' | 'RTCConstraintEnableDtlsSrtpTrue' | 'RTCPeerConnectionComplexPlanBSdpUsingDefaultSdpSemantics' | 'RTCPeerConnectionSdpSemanticsPlanB' | 'RtcpMuxPolicyNegotiate' | 'SharedArrayBufferConstructedWithoutIsolation' | 'TextToSpeech_DisallowedByAutoplay' | 'V8SharedArrayBufferConstructedInExtensionWithoutIsolation' | 'XHRJSONEncodingDetection' | 'XMLHttpRequestSynchronousInNonWorkerOutsideBeforeUnload' | 'XRSupportsSession');
3382
3382
 
3383
3383
  /**
3384
3384
  * This issue tracks information needed to print a deprecation message.
@@ -7611,6 +7611,13 @@ export namespace Protocol {
7611
7611
  imageTypes: DisabledImageType[];
7612
7612
  }
7613
7613
 
7614
+ export interface SetHardwareConcurrencyOverrideRequest {
7615
+ /**
7616
+ * Hardware concurrency to report
7617
+ */
7618
+ hardwareConcurrency: integer;
7619
+ }
7620
+
7614
7621
  export interface SetUserAgentOverrideRequest {
7615
7622
  /**
7616
7623
  * User agent to use.