devtools-protocol 0.0.1420292 → 0.0.1422344
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.
- package/json/browser_protocol.json +49 -2
- package/package.json +1 -1
- package/pdl/browser_protocol.pdl +31 -0
- package/types/protocol.d.ts +10 -2
@@ -1560,6 +1560,32 @@
|
|
1560
1560
|
"WriteErrorUnsupportedType"
|
1561
1561
|
]
|
1562
1562
|
},
|
1563
|
+
{
|
1564
|
+
"id": "SRIMessageSignatureError",
|
1565
|
+
"type": "string",
|
1566
|
+
"enum": [
|
1567
|
+
"MissingSignatureHeader",
|
1568
|
+
"MissingSignatureInputHeader",
|
1569
|
+
"InvalidSignatureHeader",
|
1570
|
+
"InvalidSignatureInputHeader",
|
1571
|
+
"SignatureHeaderValueIsNotByteSequence",
|
1572
|
+
"SignatureHeaderValueIsParameterized",
|
1573
|
+
"SignatureHeaderValueIsIncorrectLength",
|
1574
|
+
"SignatureInputHeaderMissingLabel",
|
1575
|
+
"SignatureInputHeaderValueNotInnerList",
|
1576
|
+
"SignatureInputHeaderValueMissingComponents",
|
1577
|
+
"SignatureInputHeaderInvalidComponentType",
|
1578
|
+
"SignatureInputHeaderInvalidComponentName",
|
1579
|
+
"SignatureInputHeaderInvalidHeaderComponentParameter",
|
1580
|
+
"SignatureInputHeaderInvalidDerivedComponentParameter",
|
1581
|
+
"SignatureInputHeaderKeyIdLength",
|
1582
|
+
"SignatureInputHeaderInvalidParameter",
|
1583
|
+
"SignatureInputHeaderMissingRequiredParameters",
|
1584
|
+
"ValidationFailedSignatureExpired",
|
1585
|
+
"ValidationFailedInvalidLength",
|
1586
|
+
"ValidationFailedSignatureMismatch"
|
1587
|
+
]
|
1588
|
+
},
|
1563
1589
|
{
|
1564
1590
|
"id": "AttributionReportingIssueDetails",
|
1565
1591
|
"description": "Details for issues around \"Attribution Reporting API\" usage.\nExplainer: https://github.com/WICG/attribution-reporting-api",
|
@@ -1644,6 +1670,20 @@
|
|
1644
1670
|
}
|
1645
1671
|
]
|
1646
1672
|
},
|
1673
|
+
{
|
1674
|
+
"id": "SRIMessageSignatureIssueDetails",
|
1675
|
+
"type": "object",
|
1676
|
+
"properties": [
|
1677
|
+
{
|
1678
|
+
"name": "error",
|
1679
|
+
"$ref": "SRIMessageSignatureError"
|
1680
|
+
},
|
1681
|
+
{
|
1682
|
+
"name": "request",
|
1683
|
+
"$ref": "AffectedRequest"
|
1684
|
+
}
|
1685
|
+
]
|
1686
|
+
},
|
1647
1687
|
{
|
1648
1688
|
"id": "GenericIssueErrorType",
|
1649
1689
|
"type": "string",
|
@@ -2033,7 +2073,8 @@
|
|
2033
2073
|
"FederatedAuthUserInfoRequestIssue",
|
2034
2074
|
"PropertyRuleIssue",
|
2035
2075
|
"SharedDictionaryIssue",
|
2036
|
-
"SelectElementAccessibilityIssue"
|
2076
|
+
"SelectElementAccessibilityIssue",
|
2077
|
+
"SRIMessageSignatureIssue"
|
2037
2078
|
]
|
2038
2079
|
},
|
2039
2080
|
{
|
@@ -2156,6 +2197,11 @@
|
|
2156
2197
|
"name": "selectElementAccessibilityIssueDetails",
|
2157
2198
|
"optional": true,
|
2158
2199
|
"$ref": "SelectElementAccessibilityIssueDetails"
|
2200
|
+
},
|
2201
|
+
{
|
2202
|
+
"name": "sriMessageSignatureIssueDetails",
|
2203
|
+
"optional": true,
|
2204
|
+
"$ref": "SRIMessageSignatureIssueDetails"
|
2159
2205
|
}
|
2160
2206
|
]
|
2161
2207
|
},
|
@@ -18861,7 +18907,8 @@
|
|
18861
18907
|
"EmbedderExtensionMessagingForOpenPort",
|
18862
18908
|
"EmbedderExtensionSentMessageToCachedFrame",
|
18863
18909
|
"RequestedByWebViewClient",
|
18864
|
-
"PostMessageByWebViewClient"
|
18910
|
+
"PostMessageByWebViewClient",
|
18911
|
+
"CacheControlNoStoreDeviceBoundSessionTerminated"
|
18865
18912
|
]
|
18866
18913
|
},
|
18867
18914
|
{
|
package/package.json
CHANGED
package/pdl/browser_protocol.pdl
CHANGED
@@ -801,6 +801,29 @@ experimental domain Audits
|
|
801
801
|
WriteErrorTooLongIdField
|
802
802
|
WriteErrorUnsupportedType
|
803
803
|
|
804
|
+
type SRIMessageSignatureError extends string
|
805
|
+
enum
|
806
|
+
MissingSignatureHeader
|
807
|
+
MissingSignatureInputHeader
|
808
|
+
InvalidSignatureHeader
|
809
|
+
InvalidSignatureInputHeader
|
810
|
+
SignatureHeaderValueIsNotByteSequence
|
811
|
+
SignatureHeaderValueIsParameterized
|
812
|
+
SignatureHeaderValueIsIncorrectLength
|
813
|
+
SignatureInputHeaderMissingLabel
|
814
|
+
SignatureInputHeaderValueNotInnerList
|
815
|
+
SignatureInputHeaderValueMissingComponents
|
816
|
+
SignatureInputHeaderInvalidComponentType
|
817
|
+
SignatureInputHeaderInvalidComponentName
|
818
|
+
SignatureInputHeaderInvalidHeaderComponentParameter
|
819
|
+
SignatureInputHeaderInvalidDerivedComponentParameter
|
820
|
+
SignatureInputHeaderKeyIdLength
|
821
|
+
SignatureInputHeaderInvalidParameter
|
822
|
+
SignatureInputHeaderMissingRequiredParameters
|
823
|
+
ValidationFailedSignatureExpired
|
824
|
+
ValidationFailedInvalidLength
|
825
|
+
ValidationFailedSignatureMismatch
|
826
|
+
|
804
827
|
# Details for issues around "Attribution Reporting API" usage.
|
805
828
|
# Explainer: https://github.com/WICG/attribution-reporting-api
|
806
829
|
type AttributionReportingIssueDetails extends object
|
@@ -832,6 +855,11 @@ experimental domain Audits
|
|
832
855
|
SharedDictionaryError sharedDictionaryError
|
833
856
|
AffectedRequest request
|
834
857
|
|
858
|
+
type SRIMessageSignatureIssueDetails extends object
|
859
|
+
properties
|
860
|
+
SRIMessageSignatureError error
|
861
|
+
AffectedRequest request
|
862
|
+
|
835
863
|
type GenericIssueErrorType extends string
|
836
864
|
enum
|
837
865
|
FormLabelForNameError
|
@@ -1076,6 +1104,7 @@ experimental domain Audits
|
|
1076
1104
|
PropertyRuleIssue
|
1077
1105
|
SharedDictionaryIssue
|
1078
1106
|
SelectElementAccessibilityIssue
|
1107
|
+
SRIMessageSignatureIssue
|
1079
1108
|
|
1080
1109
|
# This struct holds a list of optional fields with additional information
|
1081
1110
|
# specific to the kind of issue. When adding a new issue code, please also
|
@@ -1105,6 +1134,7 @@ experimental domain Audits
|
|
1105
1134
|
optional FederatedAuthUserInfoRequestIssueDetails federatedAuthUserInfoRequestIssueDetails
|
1106
1135
|
optional SharedDictionaryIssueDetails sharedDictionaryIssueDetails
|
1107
1136
|
optional SelectElementAccessibilityIssueDetails selectElementAccessibilityIssueDetails
|
1137
|
+
optional SRIMessageSignatureIssueDetails sriMessageSignatureIssueDetails
|
1108
1138
|
|
1109
1139
|
# A unique id for a DevTools inspector issue. Allows other entities (e.g.
|
1110
1140
|
# exceptions, CDP message, console messages, etc.) to reference an issue.
|
@@ -9721,6 +9751,7 @@ domain Page
|
|
9721
9751
|
EmbedderExtensionSentMessageToCachedFrame
|
9722
9752
|
RequestedByWebViewClient
|
9723
9753
|
PostMessageByWebViewClient
|
9754
|
+
CacheControlNoStoreDeviceBoundSessionTerminated
|
9724
9755
|
|
9725
9756
|
# Types of not restored reasons for back-forward cache.
|
9726
9757
|
experimental type BackForwardCacheNotRestoredReasonType extends string
|
package/types/protocol.d.ts
CHANGED
@@ -3540,6 +3540,8 @@ export namespace Protocol {
|
|
3540
3540
|
|
3541
3541
|
export type SharedDictionaryError = ('UseErrorCrossOriginNoCorsRequest' | 'UseErrorDictionaryLoadFailure' | 'UseErrorMatchingDictionaryNotUsed' | 'UseErrorUnexpectedContentDictionaryHeader' | 'WriteErrorCossOriginNoCorsRequest' | 'WriteErrorDisallowedBySettings' | 'WriteErrorExpiredResponse' | 'WriteErrorFeatureDisabled' | 'WriteErrorInsufficientResources' | 'WriteErrorInvalidMatchField' | 'WriteErrorInvalidStructuredHeader' | 'WriteErrorNavigationRequest' | 'WriteErrorNoMatchField' | 'WriteErrorNonListMatchDestField' | 'WriteErrorNonSecureContext' | 'WriteErrorNonStringIdField' | 'WriteErrorNonStringInMatchDestList' | 'WriteErrorNonStringMatchField' | 'WriteErrorNonTokenTypeField' | 'WriteErrorRequestAborted' | 'WriteErrorShuttingDown' | 'WriteErrorTooLongIdField' | 'WriteErrorUnsupportedType');
|
3542
3542
|
|
3543
|
+
export type SRIMessageSignatureError = ('MissingSignatureHeader' | 'MissingSignatureInputHeader' | 'InvalidSignatureHeader' | 'InvalidSignatureInputHeader' | 'SignatureHeaderValueIsNotByteSequence' | 'SignatureHeaderValueIsParameterized' | 'SignatureHeaderValueIsIncorrectLength' | 'SignatureInputHeaderMissingLabel' | 'SignatureInputHeaderValueNotInnerList' | 'SignatureInputHeaderValueMissingComponents' | 'SignatureInputHeaderInvalidComponentType' | 'SignatureInputHeaderInvalidComponentName' | 'SignatureInputHeaderInvalidHeaderComponentParameter' | 'SignatureInputHeaderInvalidDerivedComponentParameter' | 'SignatureInputHeaderKeyIdLength' | 'SignatureInputHeaderInvalidParameter' | 'SignatureInputHeaderMissingRequiredParameters' | 'ValidationFailedSignatureExpired' | 'ValidationFailedInvalidLength' | 'ValidationFailedSignatureMismatch');
|
3544
|
+
|
3543
3545
|
/**
|
3544
3546
|
* Details for issues around "Attribution Reporting API" usage.
|
3545
3547
|
* Explainer: https://github.com/WICG/attribution-reporting-api
|
@@ -3577,6 +3579,11 @@ export namespace Protocol {
|
|
3577
3579
|
request: AffectedRequest;
|
3578
3580
|
}
|
3579
3581
|
|
3582
|
+
export interface SRIMessageSignatureIssueDetails {
|
3583
|
+
error: SRIMessageSignatureError;
|
3584
|
+
request: AffectedRequest;
|
3585
|
+
}
|
3586
|
+
|
3580
3587
|
export type GenericIssueErrorType = ('FormLabelForNameError' | 'FormDuplicateIdForInputError' | 'FormInputWithNoLabelError' | 'FormAutocompleteAttributeEmptyError' | 'FormEmptyIdAndNameAttributesForInputError' | 'FormAriaLabelledByToNonExistingId' | 'FormInputAssignedAutocompleteValueToIdOrNameAttributeError' | 'FormLabelHasNeitherForNorNestedInput' | 'FormLabelForMatchesNonExistingIdError' | 'FormInputHasWrongButWellIntendedAutocompleteValueError' | 'ResponseWasBlockedByORB');
|
3581
3588
|
|
3582
3589
|
/**
|
@@ -3747,7 +3754,7 @@ export namespace Protocol {
|
|
3747
3754
|
* optional fields in InspectorIssueDetails to convey more specific
|
3748
3755
|
* information about the kind of issue.
|
3749
3756
|
*/
|
3750
|
-
export type InspectorIssueCode = ('CookieIssue' | 'MixedContentIssue' | 'BlockedByResponseIssue' | 'HeavyAdIssue' | 'ContentSecurityPolicyIssue' | 'SharedArrayBufferIssue' | 'LowTextContrastIssue' | 'CorsIssue' | 'AttributionReportingIssue' | 'QuirksModeIssue' | 'PartitioningBlobURLIssue' | 'NavigatorUserAgentIssue' | 'GenericIssue' | 'DeprecationIssue' | 'ClientHintIssue' | 'FederatedAuthRequestIssue' | 'BounceTrackingIssue' | 'CookieDeprecationMetadataIssue' | 'StylesheetLoadingIssue' | 'FederatedAuthUserInfoRequestIssue' | 'PropertyRuleIssue' | 'SharedDictionaryIssue' | 'SelectElementAccessibilityIssue');
|
3757
|
+
export type InspectorIssueCode = ('CookieIssue' | 'MixedContentIssue' | 'BlockedByResponseIssue' | 'HeavyAdIssue' | 'ContentSecurityPolicyIssue' | 'SharedArrayBufferIssue' | 'LowTextContrastIssue' | 'CorsIssue' | 'AttributionReportingIssue' | 'QuirksModeIssue' | 'PartitioningBlobURLIssue' | 'NavigatorUserAgentIssue' | 'GenericIssue' | 'DeprecationIssue' | 'ClientHintIssue' | 'FederatedAuthRequestIssue' | 'BounceTrackingIssue' | 'CookieDeprecationMetadataIssue' | 'StylesheetLoadingIssue' | 'FederatedAuthUserInfoRequestIssue' | 'PropertyRuleIssue' | 'SharedDictionaryIssue' | 'SelectElementAccessibilityIssue' | 'SRIMessageSignatureIssue');
|
3751
3758
|
|
3752
3759
|
/**
|
3753
3760
|
* This struct holds a list of optional fields with additional information
|
@@ -3778,6 +3785,7 @@ export namespace Protocol {
|
|
3778
3785
|
federatedAuthUserInfoRequestIssueDetails?: FederatedAuthUserInfoRequestIssueDetails;
|
3779
3786
|
sharedDictionaryIssueDetails?: SharedDictionaryIssueDetails;
|
3780
3787
|
selectElementAccessibilityIssueDetails?: SelectElementAccessibilityIssueDetails;
|
3788
|
+
sriMessageSignatureIssueDetails?: SRIMessageSignatureIssueDetails;
|
3781
3789
|
}
|
3782
3790
|
|
3783
3791
|
/**
|
@@ -14270,7 +14278,7 @@ export namespace Protocol {
|
|
14270
14278
|
/**
|
14271
14279
|
* List of not restored reasons for back-forward cache.
|
14272
14280
|
*/
|
14273
|
-
export type BackForwardCacheNotRestoredReason = ('NotPrimaryMainFrame' | 'BackForwardCacheDisabled' | 'RelatedActiveContentsExist' | 'HTTPStatusNotOK' | 'SchemeNotHTTPOrHTTPS' | 'Loading' | 'WasGrantedMediaAccess' | 'DisableForRenderFrameHostCalled' | 'DomainNotAllowed' | 'HTTPMethodNotGET' | 'SubframeIsNavigating' | 'Timeout' | 'CacheLimit' | 'JavaScriptExecution' | 'RendererProcessKilled' | 'RendererProcessCrashed' | 'SchedulerTrackedFeatureUsed' | 'ConflictingBrowsingInstance' | 'CacheFlushed' | 'ServiceWorkerVersionActivation' | 'SessionRestored' | 'ServiceWorkerPostMessage' | 'EnteredBackForwardCacheBeforeServiceWorkerHostAdded' | 'RenderFrameHostReused_SameSite' | 'RenderFrameHostReused_CrossSite' | 'ServiceWorkerClaim' | 'IgnoreEventAndEvict' | 'HaveInnerContents' | 'TimeoutPuttingInCache' | 'BackForwardCacheDisabledByLowMemory' | 'BackForwardCacheDisabledByCommandLine' | 'NetworkRequestDatapipeDrainedAsBytesConsumer' | 'NetworkRequestRedirected' | 'NetworkRequestTimeout' | 'NetworkExceedsBufferLimit' | 'NavigationCancelledWhileRestoring' | 'NotMostRecentNavigationEntry' | 'BackForwardCacheDisabledForPrerender' | 'UserAgentOverrideDiffers' | 'ForegroundCacheLimit' | 'BrowsingInstanceNotSwapped' | 'BackForwardCacheDisabledForDelegate' | 'UnloadHandlerExistsInMainFrame' | 'UnloadHandlerExistsInSubFrame' | 'ServiceWorkerUnregistration' | 'CacheControlNoStore' | 'CacheControlNoStoreCookieModified' | 'CacheControlNoStoreHTTPOnlyCookieModified' | 'NoResponseHead' | 'Unknown' | 'ActivationNavigationsDisallowedForBug1234857' | 'ErrorDocument' | 'FencedFramesEmbedder' | 'CookieDisabled' | 'HTTPAuthRequired' | 'CookieFlushed' | 'BroadcastChannelOnMessage' | 'WebViewSettingsChanged' | 'WebViewJavaScriptObjectChanged' | 'WebViewMessageListenerInjected' | 'WebViewSafeBrowsingAllowlistChanged' | 'WebViewDocumentStartJavascriptChanged' | 'WebSocket' | 'WebTransport' | 'WebRTC' | 'MainResourceHasCacheControlNoStore' | 'MainResourceHasCacheControlNoCache' | 'SubresourceHasCacheControlNoStore' | 'SubresourceHasCacheControlNoCache' | 'ContainsPlugins' | 'DocumentLoaded' | 'OutstandingNetworkRequestOthers' | 'RequestedMIDIPermission' | 'RequestedAudioCapturePermission' | 'RequestedVideoCapturePermission' | 'RequestedBackForwardCacheBlockedSensors' | 'RequestedBackgroundWorkPermission' | 'BroadcastChannel' | 'WebXR' | 'SharedWorker' | 'WebLocks' | 'WebHID' | 'WebShare' | 'RequestedStorageAccessGrant' | 'WebNfc' | 'OutstandingNetworkRequestFetch' | 'OutstandingNetworkRequestXHR' | 'AppBanner' | 'Printing' | 'WebDatabase' | 'PictureInPicture' | 'SpeechRecognizer' | 'IdleManager' | 'PaymentManager' | 'SpeechSynthesis' | 'KeyboardLock' | 'WebOTPService' | 'OutstandingNetworkRequestDirectSocket' | 'InjectedJavascript' | 'InjectedStyleSheet' | 'KeepaliveRequest' | 'IndexedDBEvent' | 'Dummy' | 'JsNetworkRequestReceivedCacheControlNoStoreResource' | 'WebRTCSticky' | 'WebTransportSticky' | 'WebSocketSticky' | 'SmartCard' | 'LiveMediaStreamTrack' | 'UnloadHandler' | 'ParserAborted' | 'ContentSecurityHandler' | 'ContentWebAuthenticationAPI' | 'ContentFileChooser' | 'ContentSerial' | 'ContentFileSystemAccess' | 'ContentMediaDevicesDispatcherHost' | 'ContentWebBluetooth' | 'ContentWebUSB' | 'ContentMediaSessionService' | 'ContentScreenReader' | 'ContentDiscarded' | 'EmbedderPopupBlockerTabHelper' | 'EmbedderSafeBrowsingTriggeredPopupBlocker' | 'EmbedderSafeBrowsingThreatDetails' | 'EmbedderAppBannerManager' | 'EmbedderDomDistillerViewerSource' | 'EmbedderDomDistillerSelfDeletingRequestDelegate' | 'EmbedderOomInterventionTabHelper' | 'EmbedderOfflinePage' | 'EmbedderChromePasswordManagerClientBindCredentialManager' | 'EmbedderPermissionRequestManager' | 'EmbedderModalDialog' | 'EmbedderExtensions' | 'EmbedderExtensionMessaging' | 'EmbedderExtensionMessagingForOpenPort' | 'EmbedderExtensionSentMessageToCachedFrame' | 'RequestedByWebViewClient' | 'PostMessageByWebViewClient');
|
14281
|
+
export type BackForwardCacheNotRestoredReason = ('NotPrimaryMainFrame' | 'BackForwardCacheDisabled' | 'RelatedActiveContentsExist' | 'HTTPStatusNotOK' | 'SchemeNotHTTPOrHTTPS' | 'Loading' | 'WasGrantedMediaAccess' | 'DisableForRenderFrameHostCalled' | 'DomainNotAllowed' | 'HTTPMethodNotGET' | 'SubframeIsNavigating' | 'Timeout' | 'CacheLimit' | 'JavaScriptExecution' | 'RendererProcessKilled' | 'RendererProcessCrashed' | 'SchedulerTrackedFeatureUsed' | 'ConflictingBrowsingInstance' | 'CacheFlushed' | 'ServiceWorkerVersionActivation' | 'SessionRestored' | 'ServiceWorkerPostMessage' | 'EnteredBackForwardCacheBeforeServiceWorkerHostAdded' | 'RenderFrameHostReused_SameSite' | 'RenderFrameHostReused_CrossSite' | 'ServiceWorkerClaim' | 'IgnoreEventAndEvict' | 'HaveInnerContents' | 'TimeoutPuttingInCache' | 'BackForwardCacheDisabledByLowMemory' | 'BackForwardCacheDisabledByCommandLine' | 'NetworkRequestDatapipeDrainedAsBytesConsumer' | 'NetworkRequestRedirected' | 'NetworkRequestTimeout' | 'NetworkExceedsBufferLimit' | 'NavigationCancelledWhileRestoring' | 'NotMostRecentNavigationEntry' | 'BackForwardCacheDisabledForPrerender' | 'UserAgentOverrideDiffers' | 'ForegroundCacheLimit' | 'BrowsingInstanceNotSwapped' | 'BackForwardCacheDisabledForDelegate' | 'UnloadHandlerExistsInMainFrame' | 'UnloadHandlerExistsInSubFrame' | 'ServiceWorkerUnregistration' | 'CacheControlNoStore' | 'CacheControlNoStoreCookieModified' | 'CacheControlNoStoreHTTPOnlyCookieModified' | 'NoResponseHead' | 'Unknown' | 'ActivationNavigationsDisallowedForBug1234857' | 'ErrorDocument' | 'FencedFramesEmbedder' | 'CookieDisabled' | 'HTTPAuthRequired' | 'CookieFlushed' | 'BroadcastChannelOnMessage' | 'WebViewSettingsChanged' | 'WebViewJavaScriptObjectChanged' | 'WebViewMessageListenerInjected' | 'WebViewSafeBrowsingAllowlistChanged' | 'WebViewDocumentStartJavascriptChanged' | 'WebSocket' | 'WebTransport' | 'WebRTC' | 'MainResourceHasCacheControlNoStore' | 'MainResourceHasCacheControlNoCache' | 'SubresourceHasCacheControlNoStore' | 'SubresourceHasCacheControlNoCache' | 'ContainsPlugins' | 'DocumentLoaded' | 'OutstandingNetworkRequestOthers' | 'RequestedMIDIPermission' | 'RequestedAudioCapturePermission' | 'RequestedVideoCapturePermission' | 'RequestedBackForwardCacheBlockedSensors' | 'RequestedBackgroundWorkPermission' | 'BroadcastChannel' | 'WebXR' | 'SharedWorker' | 'WebLocks' | 'WebHID' | 'WebShare' | 'RequestedStorageAccessGrant' | 'WebNfc' | 'OutstandingNetworkRequestFetch' | 'OutstandingNetworkRequestXHR' | 'AppBanner' | 'Printing' | 'WebDatabase' | 'PictureInPicture' | 'SpeechRecognizer' | 'IdleManager' | 'PaymentManager' | 'SpeechSynthesis' | 'KeyboardLock' | 'WebOTPService' | 'OutstandingNetworkRequestDirectSocket' | 'InjectedJavascript' | 'InjectedStyleSheet' | 'KeepaliveRequest' | 'IndexedDBEvent' | 'Dummy' | 'JsNetworkRequestReceivedCacheControlNoStoreResource' | 'WebRTCSticky' | 'WebTransportSticky' | 'WebSocketSticky' | 'SmartCard' | 'LiveMediaStreamTrack' | 'UnloadHandler' | 'ParserAborted' | 'ContentSecurityHandler' | 'ContentWebAuthenticationAPI' | 'ContentFileChooser' | 'ContentSerial' | 'ContentFileSystemAccess' | 'ContentMediaDevicesDispatcherHost' | 'ContentWebBluetooth' | 'ContentWebUSB' | 'ContentMediaSessionService' | 'ContentScreenReader' | 'ContentDiscarded' | 'EmbedderPopupBlockerTabHelper' | 'EmbedderSafeBrowsingTriggeredPopupBlocker' | 'EmbedderSafeBrowsingThreatDetails' | 'EmbedderAppBannerManager' | 'EmbedderDomDistillerViewerSource' | 'EmbedderDomDistillerSelfDeletingRequestDelegate' | 'EmbedderOomInterventionTabHelper' | 'EmbedderOfflinePage' | 'EmbedderChromePasswordManagerClientBindCredentialManager' | 'EmbedderPermissionRequestManager' | 'EmbedderModalDialog' | 'EmbedderExtensions' | 'EmbedderExtensionMessaging' | 'EmbedderExtensionMessagingForOpenPort' | 'EmbedderExtensionSentMessageToCachedFrame' | 'RequestedByWebViewClient' | 'PostMessageByWebViewClient' | 'CacheControlNoStoreDeviceBoundSessionTerminated');
|
14274
14282
|
|
14275
14283
|
/**
|
14276
14284
|
* Types of not restored reasons for back-forward cache.
|