devtools-protocol 0.0.997149 → 0.0.998712
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.
@@ -1550,7 +1550,6 @@
|
|
1550
1550
|
"type": "string",
|
1551
1551
|
"enum": [
|
1552
1552
|
"AuthorizationCoveredByWildcard",
|
1553
|
-
"BatteryStatusInsecureOrigin",
|
1554
1553
|
"CanRequestURLHTTPContainingNewline",
|
1555
1554
|
"ChromeLoadTimesConnectionInfo",
|
1556
1555
|
"ChromeLoadTimesFirstPaintAfterLoadTime",
|
@@ -1606,7 +1605,6 @@
|
|
1606
1605
|
"SharedArrayBufferConstructedWithoutIsolation",
|
1607
1606
|
"TextToSpeech_DisallowedByAutoplay",
|
1608
1607
|
"V8SharedArrayBufferConstructedInExtensionWithoutIsolation",
|
1609
|
-
"WebCodecsVideoFrameDefaultTimestamp",
|
1610
1608
|
"XHRJSONEncodingDetection",
|
1611
1609
|
"XMLHttpRequestSynchronousInNonWorkerOutsideBeforeUnload",
|
1612
1610
|
"XRSupportsSession"
|
@@ -8388,7 +8386,7 @@
|
|
8388
8386
|
"commands": [
|
8389
8387
|
{
|
8390
8388
|
"name": "beginFrame",
|
8391
|
-
"description": "Sends a BeginFrame to the target and returns when the frame was completed. Optionally captures a\nscreenshot from the resulting frame. Requires that the target was created with enabled\nBeginFrameControl. Designed for use with --run-all-compositor-stages-before-draw, see also\nhttps://goo.
|
8389
|
+
"description": "Sends a BeginFrame to the target and returns when the frame was completed. Optionally captures a\nscreenshot from the resulting frame. Requires that the target was created with enabled\nBeginFrameControl. Designed for use with --run-all-compositor-stages-before-draw, see also\nhttps://goo.gle/chrome-headless-rendering for more background.",
|
8392
8390
|
"parameters": [
|
8393
8391
|
{
|
8394
8392
|
"name": "frameTimeTicks",
|
package/package.json
CHANGED
package/pdl/browser_protocol.pdl
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
# Use of this source code is governed by a BSD-style license that can be
|
3
3
|
# found in the LICENSE file.
|
4
4
|
#
|
5
|
-
# Contributing to Chrome DevTools Protocol: https://
|
5
|
+
# Contributing to Chrome DevTools Protocol: https://goo.gle/devtools-contribution-guide-cdp
|
6
6
|
|
7
7
|
version
|
8
8
|
major 1
|
@@ -744,7 +744,6 @@ experimental domain Audits
|
|
744
744
|
type DeprecationIssueType extends string
|
745
745
|
enum
|
746
746
|
AuthorizationCoveredByWildcard
|
747
|
-
BatteryStatusInsecureOrigin
|
748
747
|
CanRequestURLHTTPContainingNewline
|
749
748
|
ChromeLoadTimesConnectionInfo
|
750
749
|
ChromeLoadTimesFirstPaintAfterLoadTime
|
@@ -800,7 +799,6 @@ experimental domain Audits
|
|
800
799
|
SharedArrayBufferConstructedWithoutIsolation
|
801
800
|
TextToSpeech_DisallowedByAutoplay
|
802
801
|
V8SharedArrayBufferConstructedInExtensionWithoutIsolation
|
803
|
-
WebCodecsVideoFrameDefaultTimestamp
|
804
802
|
XHRJSONEncodingDetection
|
805
803
|
XMLHttpRequestSynchronousInNonWorkerOutsideBeforeUnload
|
806
804
|
XRSupportsSession
|
@@ -3851,7 +3849,7 @@ experimental domain HeadlessExperimental
|
|
3851
3849
|
# Sends a BeginFrame to the target and returns when the frame was completed. Optionally captures a
|
3852
3850
|
# screenshot from the resulting frame. Requires that the target was created with enabled
|
3853
3851
|
# BeginFrameControl. Designed for use with --run-all-compositor-stages-before-draw, see also
|
3854
|
-
# https://goo.
|
3852
|
+
# https://goo.gle/chrome-headless-rendering for more background.
|
3855
3853
|
command beginFrame
|
3856
3854
|
parameters
|
3857
3855
|
# Timestamp of this BeginFrame in Renderer TimeTicks (milliseconds of uptime). If not set,
|
@@ -2583,7 +2583,7 @@ export namespace ProtocolMapping {
|
|
2583
2583
|
* Sends a BeginFrame to the target and returns when the frame was completed. Optionally captures a
|
2584
2584
|
* screenshot from the resulting frame. Requires that the target was created with enabled
|
2585
2585
|
* BeginFrameControl. Designed for use with --run-all-compositor-stages-before-draw, see also
|
2586
|
-
* https://goo.
|
2586
|
+
* https://goo.gle/chrome-headless-rendering for more background.
|
2587
2587
|
*/
|
2588
2588
|
'HeadlessExperimental.beginFrame': {
|
2589
2589
|
paramsType: [Protocol.HeadlessExperimental.BeginFrameRequest?];
|
@@ -1804,7 +1804,7 @@ export namespace ProtocolProxyApi {
|
|
1804
1804
|
* Sends a BeginFrame to the target and returns when the frame was completed. Optionally captures a
|
1805
1805
|
* screenshot from the resulting frame. Requires that the target was created with enabled
|
1806
1806
|
* BeginFrameControl. Designed for use with --run-all-compositor-stages-before-draw, see also
|
1807
|
-
* https://goo.
|
1807
|
+
* https://goo.gle/chrome-headless-rendering for more background.
|
1808
1808
|
*/
|
1809
1809
|
beginFrame(params: Protocol.HeadlessExperimental.BeginFrameRequest): Promise<Protocol.HeadlessExperimental.BeginFrameResponse>;
|
1810
1810
|
|
package/types/protocol.d.ts
CHANGED
@@ -3376,7 +3376,7 @@ export namespace Protocol {
|
|
3376
3376
|
frameId?: Page.FrameId;
|
3377
3377
|
}
|
3378
3378
|
|
3379
|
-
export type DeprecationIssueType = ('AuthorizationCoveredByWildcard' | '
|
3379
|
+
export type DeprecationIssueType = ('AuthorizationCoveredByWildcard' | 'CanRequestURLHTTPContainingNewline' | 'ChromeLoadTimesConnectionInfo' | 'ChromeLoadTimesFirstPaintAfterLoadTime' | 'ChromeLoadTimesWasAlternateProtocolAvailable' | 'CookieWithTruncatingChar' | 'CrossOriginAccessBasedOnDocumentDomain' | 'CrossOriginWindowAlert' | 'CrossOriginWindowConfirm' | 'CSSSelectorInternalMediaControlsOverlayCastButton' | 'CustomCursorIntersectsViewport' | 'DeprecationExample' | 'DocumentDomainSettingWithoutOriginAgentClusterHeader' | 'EventPath' | 'GeolocationInsecureOrigin' | 'GeolocationInsecureOriginDeprecatedNotRemoved' | 'GetUserMediaInsecureOrigin' | 'HostCandidateAttributeGetter' | 'InsecurePrivateNetworkSubresourceRequest' | 'LegacyConstraintGoogCpuOveruseDetection' | 'LegacyConstraintGoogIPv6' | 'LegacyConstraintGoogScreencastMinBitrate' | 'LegacyConstraintGoogSuspendBelowMinBitrate' | 'LocalCSSFileExtensionRejected' | 'MediaElementAudioSourceNode' | 'MediaSourceAbortRemove' | 'MediaSourceDurationTruncatingBuffered' | 'NoSysexWebMIDIWithoutPermission' | 'NotificationInsecureOrigin' | 'NotificationPermissionRequestedIframe' | 'ObsoleteWebRtcCipherSuite' | 'PaymentRequestBasicCard' | 'PaymentRequestShowWithoutGesture' | 'PictureSourceSrc' | 'PrefixedCancelAnimationFrame' | 'PrefixedRequestAnimationFrame' | 'PrefixedStorageInfo' | 'PrefixedVideoDisplayingFullscreen' | 'PrefixedVideoEnterFullscreen' | 'PrefixedVideoEnterFullScreen' | 'PrefixedVideoExitFullscreen' | 'PrefixedVideoExitFullScreen' | 'PrefixedVideoSupportsFullscreen' | 'RangeExpand' | 'RequestedSubresourceWithEmbeddedCredentials' | 'RTCConstraintEnableDtlsSrtpFalse' | 'RTCConstraintEnableDtlsSrtpTrue' | 'RTCPeerConnectionComplexPlanBSdpUsingDefaultSdpSemantics' | 'RTCPeerConnectionLegacyCreateWithMediaConstraints' | 'RTCPeerConnectionSdpSemanticsPlanB' | 'RtcpMuxPolicyNegotiate' | 'RTPDataChannel' | 'SelectionAddRangeIntersect' | 'SharedArrayBufferConstructedWithoutIsolation' | 'TextToSpeech_DisallowedByAutoplay' | 'V8SharedArrayBufferConstructedInExtensionWithoutIsolation' | 'XHRJSONEncodingDetection' | 'XMLHttpRequestSynchronousInNonWorkerOutsideBeforeUnload' | 'XRSupportsSession');
|
3380
3380
|
|
3381
3381
|
/**
|
3382
3382
|
* This issue tracks information needed to print a deprecation message.
|