devtools-protocol 0.0.923255 → 0.0.924232
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/changelog.md +19 -0
- package/json/browser_protocol.json +15 -4
- package/package.json +1 -1
- package/pdl/browser_protocol.pdl +16 -2
- package/types/protocol-mapping.d.ts +1 -0
- package/types/protocol-proxy-api.d.ts +1 -0
- package/types/protocol.d.ts +11 -4
package/changelog.md
CHANGED
|
@@ -1,5 +1,24 @@
|
|
|
1
1
|
|
|
2
2
|
|
|
3
|
+
## Roll protocol to r923714
|
|
4
|
+
###### _2021-09-21 20:15:27_ | Diff: [d6f4069...3c9570a](https://github.com/ChromeDevTools/devtools-protocol/compare/d6f4069...3c9570a)
|
|
5
|
+
#### `Page`: modified type
|
|
6
|
+
* [`Page.BackForwardCacheNotRestoredReason`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#type-BackForwardCacheNotRestoredReason) - The enum's `EmbedderPopupBlockerTabHelper` _updated_. The enum's `EmbedderSafeBrowsingTriggeredPopupBlocker` _updated_. The enum's `EmbedderSafeBrowsingThreatDetails` _updated_. The enum's `EmbedderAppBannerManager` _updated_. The enum's `EmbedderDomDistillerViewerSource` _updated_. The enum's `EmbedderDomDistillerSelfDeletingRequestDelegate` _updated_. The enum's `EmbedderOomInterventionTabHelper` _updated_. The enum's `EmbedderOfflinePage` _updated_. The enum's `EmbedderChromePasswordManagerClientBindCredentialManager` _updated_. The enum's `EmbedderPermissionRequestManager` _updated_. The enum's `EmbedderModalDialog` _updated_. The enum's `EmbedderExtensions` _updated_. The enum's `EmbedderExtensionMessaging` _updated_. The enum's `EmbedderExtensionMessagingForOpenPort` _updated_. The enum's `EmbedderExtensionSentMessageToCachedFrame` _updated_. The enum's `EmbedderExtensionSentMessageToCachedFrame` _added_.
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
## Roll protocol to r923359
|
|
10
|
+
###### _2021-09-21 06:15:22_ | Diff: [384a24c...d6f4069](https://github.com/ChromeDevTools/devtools-protocol/compare/384a24c...d6f4069)
|
|
11
|
+
#### `Network`: modified types
|
|
12
|
+
* [`Network.SetCookieBlockedReason`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-SetCookieBlockedReason) - The enum's `NameValuePairExceedsMaxSize` _added_.
|
|
13
|
+
* [`Network.CookieBlockedReason`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-CookieBlockedReason) - The enum's `NameValuePairExceedsMaxSize` _added_.
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
## Roll protocol to r923255
|
|
17
|
+
###### _2021-09-20 23:15:25_ | Diff: [f62186c...384a24c](https://github.com/ChromeDevTools/devtools-protocol/compare/f62186c...384a24c)
|
|
18
|
+
#### `Page`: modified type
|
|
19
|
+
* [`Page.BackForwardCacheNotRestoredReason`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#type-BackForwardCacheNotRestoredReason) - The enum's `EmbedderPopupBlockerTabHelper` _updated_. The enum's `EmbedderSafeBrowsingTriggeredPopupBlocker` _updated_. The enum's `EmbedderSafeBrowsingThreatDetails` _updated_. The enum's `EmbedderAppBannerManager` _updated_. The enum's `EmbedderDomDistillerViewerSource` _updated_. The enum's `EmbedderDomDistillerSelfDeletingRequestDelegate` _updated_. The enum's `EmbedderOomInterventionTabHelper` _updated_. The enum's `EmbedderOfflinePage` _updated_. The enum's `EmbedderChromePasswordManagerClientBindCredentialManager` _updated_. The enum's `EmbedderPermissionRequestManager` _updated_. The enum's `EmbedderModalDialog` _updated_. The enum's `EmbedderExtensions` _updated_. The enum's `EmbedderExtensionMessaging` _updated_. The enum's `EmbedderExtensionMessagingForOpenPort` _updated_. The enum's `EmbedderExtensionSentMessageToCachedFrame` _updated_. The enum's `EmbedderExtensionSentMessageToCachedFrame` _added_.
|
|
20
|
+
|
|
21
|
+
|
|
3
22
|
## Roll protocol to r922637
|
|
4
23
|
###### _2021-09-17 13:15:26_ | Diff: [d99de50...b86f904](https://github.com/ChromeDevTools/devtools-protocol/compare/d99de50...b86f904)
|
|
5
24
|
#### `Page`: modified type
|
|
@@ -834,7 +834,9 @@
|
|
|
834
834
|
},
|
|
835
835
|
{
|
|
836
836
|
"domain": "ApplicationCache",
|
|
837
|
+
"description": "The domain is deprecated as AppCache is being removed (see crbug.com/582750).",
|
|
837
838
|
"experimental": true,
|
|
839
|
+
"deprecated": true,
|
|
838
840
|
"dependencies": [
|
|
839
841
|
"Page"
|
|
840
842
|
],
|
|
@@ -11189,7 +11191,8 @@
|
|
|
11189
11191
|
"SchemefulSameSiteLax",
|
|
11190
11192
|
"SchemefulSameSiteUnspecifiedTreatedAsLax",
|
|
11191
11193
|
"SamePartyFromCrossPartyContext",
|
|
11192
|
-
"SamePartyConflictsWithOtherAttributes"
|
|
11194
|
+
"SamePartyConflictsWithOtherAttributes",
|
|
11195
|
+
"NameValuePairExceedsMaxSize"
|
|
11193
11196
|
]
|
|
11194
11197
|
},
|
|
11195
11198
|
{
|
|
@@ -11210,7 +11213,8 @@
|
|
|
11210
11213
|
"SchemefulSameSiteStrict",
|
|
11211
11214
|
"SchemefulSameSiteLax",
|
|
11212
11215
|
"SchemefulSameSiteUnspecifiedTreatedAsLax",
|
|
11213
|
-
"SamePartyFromCrossPartyContext"
|
|
11216
|
+
"SamePartyFromCrossPartyContext",
|
|
11217
|
+
"NameValuePairExceedsMaxSize"
|
|
11214
11218
|
]
|
|
11215
11219
|
},
|
|
11216
11220
|
{
|
|
@@ -15470,6 +15474,7 @@
|
|
|
15470
15474
|
"ContentWebUSB",
|
|
15471
15475
|
"ContentMediaSession",
|
|
15472
15476
|
"ContentMediaSessionService",
|
|
15477
|
+
"ContentMediaPlay",
|
|
15473
15478
|
"EmbedderPopupBlockerTabHelper",
|
|
15474
15479
|
"EmbedderSafeBrowsingTriggeredPopupBlocker",
|
|
15475
15480
|
"EmbedderSafeBrowsingThreatDetails",
|
|
@@ -15777,12 +15782,18 @@
|
|
|
15777
15782
|
},
|
|
15778
15783
|
{
|
|
15779
15784
|
"name": "getAppId",
|
|
15780
|
-
"description": "Returns the unique (PWA) app id
|
|
15785
|
+
"description": "Returns the unique (PWA) app id.\nOnly returns values if the feature flag 'WebAppEnableManifestId' is enabled",
|
|
15781
15786
|
"experimental": true,
|
|
15782
15787
|
"returns": [
|
|
15783
15788
|
{
|
|
15784
15789
|
"name": "appId",
|
|
15785
|
-
"description": "
|
|
15790
|
+
"description": "App id, either from manifest's id attribute or computed from start_url",
|
|
15791
|
+
"optional": true,
|
|
15792
|
+
"type": "string"
|
|
15793
|
+
},
|
|
15794
|
+
{
|
|
15795
|
+
"name": "recommendedId",
|
|
15796
|
+
"description": "Recommendation for manifest's id attribute to match current id computed from start_url",
|
|
15786
15797
|
"optional": true,
|
|
15787
15798
|
"type": "string"
|
|
15788
15799
|
}
|
package/package.json
CHANGED
package/pdl/browser_protocol.pdl
CHANGED
|
@@ -408,7 +408,8 @@ experimental domain Animation
|
|
|
408
408
|
# Animation that was started.
|
|
409
409
|
Animation animation
|
|
410
410
|
|
|
411
|
-
|
|
411
|
+
# The domain is deprecated as AppCache is being removed (see crbug.com/582750).
|
|
412
|
+
experimental deprecated domain ApplicationCache
|
|
412
413
|
depends on Page
|
|
413
414
|
|
|
414
415
|
# Detailed application cache resource information.
|
|
@@ -5151,6 +5152,9 @@ domain Network
|
|
|
5151
5152
|
# (which is required in order to use "SameParty"); or specified the "SameSite=Strict"
|
|
5152
5153
|
# attribute (which is forbidden when using "SameParty").
|
|
5153
5154
|
SamePartyConflictsWithOtherAttributes
|
|
5155
|
+
# The cookie's name/value pair size exceeded the size limit defined in
|
|
5156
|
+
# RFC6265bis.
|
|
5157
|
+
NameValuePairExceedsMaxSize
|
|
5154
5158
|
|
|
5155
5159
|
# Types of reasons why a cookie may not be sent with a request.
|
|
5156
5160
|
experimental type CookieBlockedReason extends string
|
|
@@ -5195,6 +5199,9 @@ domain Network
|
|
|
5195
5199
|
SchemefulSameSiteUnspecifiedTreatedAsLax
|
|
5196
5200
|
# The cookie had the "SameParty" attribute and the request was made from a cross-party context.
|
|
5197
5201
|
SamePartyFromCrossPartyContext
|
|
5202
|
+
# The cookie's name/value pair size exceeded the size limit defined in
|
|
5203
|
+
# RFC6265bis.
|
|
5204
|
+
NameValuePairExceedsMaxSize
|
|
5198
5205
|
|
|
5199
5206
|
# A cookie which was not stored from a response with the corresponding reason.
|
|
5200
5207
|
experimental type BlockedSetCookieWithReason extends object
|
|
@@ -7234,10 +7241,13 @@ domain Page
|
|
|
7234
7241
|
optional binary primaryIcon
|
|
7235
7242
|
|
|
7236
7243
|
# Returns the unique (PWA) app id.
|
|
7244
|
+
# Only returns values if the feature flag 'WebAppEnableManifestId' is enabled
|
|
7237
7245
|
experimental command getAppId
|
|
7238
7246
|
returns
|
|
7239
|
-
#
|
|
7247
|
+
# App id, either from manifest's id attribute or computed from start_url
|
|
7240
7248
|
optional string appId
|
|
7249
|
+
# Recommendation for manifest's id attribute to match current id computed from start_url
|
|
7250
|
+
optional string recommendedId
|
|
7241
7251
|
|
|
7242
7252
|
# Returns all browser cookies. Depending on the backend support, will return detailed cookie
|
|
7243
7253
|
# information in the `cookies` field.
|
|
@@ -7928,6 +7938,7 @@ domain Page
|
|
|
7928
7938
|
InjectedStyleSheet
|
|
7929
7939
|
Dummy
|
|
7930
7940
|
# Disabled for render frame host reasons
|
|
7941
|
+
# See content/browser/renderer_host/back_forward_cache_disable.h for explanations.
|
|
7931
7942
|
ContentSecurityHandler
|
|
7932
7943
|
ContentWebAuthenticationAPI
|
|
7933
7944
|
ContentFileChooser
|
|
@@ -7938,6 +7949,9 @@ domain Page
|
|
|
7938
7949
|
ContentWebUSB
|
|
7939
7950
|
ContentMediaSession
|
|
7940
7951
|
ContentMediaSessionService
|
|
7952
|
+
ContentMediaPlay
|
|
7953
|
+
|
|
7954
|
+
# See components/back_forward_cache/back_forward_cache_disable.h for explanations.
|
|
7941
7955
|
EmbedderPopupBlockerTabHelper
|
|
7942
7956
|
EmbedderSafeBrowsingTriggeredPopupBlocker
|
|
7943
7957
|
EmbedderSafeBrowsingThreatDetails
|
package/types/protocol.d.ts
CHANGED
|
@@ -2997,6 +2997,9 @@ export namespace Protocol {
|
|
|
2997
2997
|
}
|
|
2998
2998
|
}
|
|
2999
2999
|
|
|
3000
|
+
/**
|
|
3001
|
+
* The domain is deprecated as AppCache is being removed (see crbug.com/582750).
|
|
3002
|
+
*/
|
|
3000
3003
|
export namespace ApplicationCache {
|
|
3001
3004
|
|
|
3002
3005
|
/**
|
|
@@ -9585,12 +9588,12 @@ export namespace Protocol {
|
|
|
9585
9588
|
/**
|
|
9586
9589
|
* Types of reasons why a cookie may not be stored from a response.
|
|
9587
9590
|
*/
|
|
9588
|
-
export type SetCookieBlockedReason = ('SecureOnly' | 'SameSiteStrict' | 'SameSiteLax' | 'SameSiteUnspecifiedTreatedAsLax' | 'SameSiteNoneInsecure' | 'UserPreferences' | 'SyntaxError' | 'SchemeNotSupported' | 'OverwriteSecure' | 'InvalidDomain' | 'InvalidPrefix' | 'UnknownError' | 'SchemefulSameSiteStrict' | 'SchemefulSameSiteLax' | 'SchemefulSameSiteUnspecifiedTreatedAsLax' | 'SamePartyFromCrossPartyContext' | 'SamePartyConflictsWithOtherAttributes');
|
|
9591
|
+
export type SetCookieBlockedReason = ('SecureOnly' | 'SameSiteStrict' | 'SameSiteLax' | 'SameSiteUnspecifiedTreatedAsLax' | 'SameSiteNoneInsecure' | 'UserPreferences' | 'SyntaxError' | 'SchemeNotSupported' | 'OverwriteSecure' | 'InvalidDomain' | 'InvalidPrefix' | 'UnknownError' | 'SchemefulSameSiteStrict' | 'SchemefulSameSiteLax' | 'SchemefulSameSiteUnspecifiedTreatedAsLax' | 'SamePartyFromCrossPartyContext' | 'SamePartyConflictsWithOtherAttributes' | 'NameValuePairExceedsMaxSize');
|
|
9589
9592
|
|
|
9590
9593
|
/**
|
|
9591
9594
|
* Types of reasons why a cookie may not be sent with a request.
|
|
9592
9595
|
*/
|
|
9593
|
-
export type CookieBlockedReason = ('SecureOnly' | 'NotOnPath' | 'DomainMismatch' | 'SameSiteStrict' | 'SameSiteLax' | 'SameSiteUnspecifiedTreatedAsLax' | 'SameSiteNoneInsecure' | 'UserPreferences' | 'UnknownError' | 'SchemefulSameSiteStrict' | 'SchemefulSameSiteLax' | 'SchemefulSameSiteUnspecifiedTreatedAsLax' | 'SamePartyFromCrossPartyContext');
|
|
9596
|
+
export type CookieBlockedReason = ('SecureOnly' | 'NotOnPath' | 'DomainMismatch' | 'SameSiteStrict' | 'SameSiteLax' | 'SameSiteUnspecifiedTreatedAsLax' | 'SameSiteNoneInsecure' | 'UserPreferences' | 'UnknownError' | 'SchemefulSameSiteStrict' | 'SchemefulSameSiteLax' | 'SchemefulSameSiteUnspecifiedTreatedAsLax' | 'SamePartyFromCrossPartyContext' | 'NameValuePairExceedsMaxSize');
|
|
9594
9597
|
|
|
9595
9598
|
/**
|
|
9596
9599
|
* A cookie which was not stored from a response with the corresponding reason.
|
|
@@ -12286,7 +12289,7 @@ export namespace Protocol {
|
|
|
12286
12289
|
/**
|
|
12287
12290
|
* List of not restored reasons for back-forward cache.
|
|
12288
12291
|
*/
|
|
12289
|
-
export type BackForwardCacheNotRestoredReason = ('NotMainFrame' | 'BackForwardCacheDisabled' | 'RelatedActiveContentsExist' | 'HTTPStatusNotOK' | 'SchemeNotHTTPOrHTTPS' | 'Loading' | 'WasGrantedMediaAccess' | 'DisableForRenderFrameHostCalled' | 'DomainNotAllowed' | 'HTTPMethodNotGET' | 'SubframeIsNavigating' | 'Timeout' | 'CacheLimit' | 'JavaScriptExecution' | 'RendererProcessKilled' | 'RendererProcessCrashed' | 'GrantedMediaStreamAccess' | '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' | 'OptInUnloadHeaderNotPresent' | 'UnloadHandlerExistsInMainFrame' | 'UnloadHandlerExistsInSubFrame' | 'ServiceWorkerUnregistration' | 'CacheControlNoStore' | 'CacheControlNoStoreCookieModified' | 'CacheControlNoStoreHTTPOnlyCookieModified' | 'NoResponseHead' | 'Unknown' | 'ActivationNavigationsDisallowedForBug1234857' | 'WebSocket' | 'WebTransport' | 'WebRTC' | 'MainResourceHasCacheControlNoStore' | 'MainResourceHasCacheControlNoCache' | 'SubresourceHasCacheControlNoStore' | 'SubresourceHasCacheControlNoCache' | 'ContainsPlugins' | 'DocumentLoaded' | 'DedicatedWorkerOrWorklet' | 'OutstandingNetworkRequestOthers' | 'OutstandingIndexedDBTransaction' | 'RequestedNotificationsPermission' | 'RequestedMIDIPermission' | 'RequestedAudioCapturePermission' | 'RequestedVideoCapturePermission' | 'RequestedBackForwardCacheBlockedSensors' | 'RequestedBackgroundWorkPermission' | 'BroadcastChannel' | 'IndexedDBConnection' | 'WebXR' | 'SharedWorker' | 'WebLocks' | 'WebHID' | 'WebShare' | 'RequestedStorageAccessGrant' | 'WebNfc' | 'OutstandingNetworkRequestFetch' | 'OutstandingNetworkRequestXHR' | 'AppBanner' | 'Printing' | 'WebDatabase' | 'PictureInPicture' | 'Portal' | 'SpeechRecognizer' | 'IdleManager' | 'PaymentManager' | 'SpeechSynthesis' | 'KeyboardLock' | 'WebOTPService' | 'OutstandingNetworkRequestDirectSocket' | 'InjectedJavascript' | 'InjectedStyleSheet' | 'Dummy' | 'ContentSecurityHandler' | 'ContentWebAuthenticationAPI' | 'ContentFileChooser' | 'ContentSerial' | 'ContentFileSystemAccess' | 'ContentMediaDevicesDispatcherHost' | 'ContentWebBluetooth' | 'ContentWebUSB' | 'ContentMediaSession' | 'ContentMediaSessionService' | 'EmbedderPopupBlockerTabHelper' | 'EmbedderSafeBrowsingTriggeredPopupBlocker' | 'EmbedderSafeBrowsingThreatDetails' | 'EmbedderAppBannerManager' | 'EmbedderDomDistillerViewerSource' | 'EmbedderDomDistillerSelfDeletingRequestDelegate' | 'EmbedderOomInterventionTabHelper' | 'EmbedderOfflinePage' | 'EmbedderChromePasswordManagerClientBindCredentialManager' | 'EmbedderPermissionRequestManager' | 'EmbedderModalDialog' | 'EmbedderExtensions' | 'EmbedderExtensionMessaging' | 'EmbedderExtensionMessagingForOpenPort' | 'EmbedderExtensionSentMessageToCachedFrame');
|
|
12292
|
+
export type BackForwardCacheNotRestoredReason = ('NotMainFrame' | 'BackForwardCacheDisabled' | 'RelatedActiveContentsExist' | 'HTTPStatusNotOK' | 'SchemeNotHTTPOrHTTPS' | 'Loading' | 'WasGrantedMediaAccess' | 'DisableForRenderFrameHostCalled' | 'DomainNotAllowed' | 'HTTPMethodNotGET' | 'SubframeIsNavigating' | 'Timeout' | 'CacheLimit' | 'JavaScriptExecution' | 'RendererProcessKilled' | 'RendererProcessCrashed' | 'GrantedMediaStreamAccess' | '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' | 'OptInUnloadHeaderNotPresent' | 'UnloadHandlerExistsInMainFrame' | 'UnloadHandlerExistsInSubFrame' | 'ServiceWorkerUnregistration' | 'CacheControlNoStore' | 'CacheControlNoStoreCookieModified' | 'CacheControlNoStoreHTTPOnlyCookieModified' | 'NoResponseHead' | 'Unknown' | 'ActivationNavigationsDisallowedForBug1234857' | 'WebSocket' | 'WebTransport' | 'WebRTC' | 'MainResourceHasCacheControlNoStore' | 'MainResourceHasCacheControlNoCache' | 'SubresourceHasCacheControlNoStore' | 'SubresourceHasCacheControlNoCache' | 'ContainsPlugins' | 'DocumentLoaded' | 'DedicatedWorkerOrWorklet' | 'OutstandingNetworkRequestOthers' | 'OutstandingIndexedDBTransaction' | 'RequestedNotificationsPermission' | 'RequestedMIDIPermission' | 'RequestedAudioCapturePermission' | 'RequestedVideoCapturePermission' | 'RequestedBackForwardCacheBlockedSensors' | 'RequestedBackgroundWorkPermission' | 'BroadcastChannel' | 'IndexedDBConnection' | 'WebXR' | 'SharedWorker' | 'WebLocks' | 'WebHID' | 'WebShare' | 'RequestedStorageAccessGrant' | 'WebNfc' | 'OutstandingNetworkRequestFetch' | 'OutstandingNetworkRequestXHR' | 'AppBanner' | 'Printing' | 'WebDatabase' | 'PictureInPicture' | 'Portal' | 'SpeechRecognizer' | 'IdleManager' | 'PaymentManager' | 'SpeechSynthesis' | 'KeyboardLock' | 'WebOTPService' | 'OutstandingNetworkRequestDirectSocket' | 'InjectedJavascript' | 'InjectedStyleSheet' | 'Dummy' | 'ContentSecurityHandler' | 'ContentWebAuthenticationAPI' | 'ContentFileChooser' | 'ContentSerial' | 'ContentFileSystemAccess' | 'ContentMediaDevicesDispatcherHost' | 'ContentWebBluetooth' | 'ContentWebUSB' | 'ContentMediaSession' | 'ContentMediaSessionService' | 'ContentMediaPlay' | 'EmbedderPopupBlockerTabHelper' | 'EmbedderSafeBrowsingTriggeredPopupBlocker' | 'EmbedderSafeBrowsingThreatDetails' | 'EmbedderAppBannerManager' | 'EmbedderDomDistillerViewerSource' | 'EmbedderDomDistillerSelfDeletingRequestDelegate' | 'EmbedderOomInterventionTabHelper' | 'EmbedderOfflinePage' | 'EmbedderChromePasswordManagerClientBindCredentialManager' | 'EmbedderPermissionRequestManager' | 'EmbedderModalDialog' | 'EmbedderExtensions' | 'EmbedderExtensionMessaging' | 'EmbedderExtensionMessagingForOpenPort' | 'EmbedderExtensionSentMessageToCachedFrame');
|
|
12290
12293
|
|
|
12291
12294
|
/**
|
|
12292
12295
|
* Types of not restored reasons for back-forward cache.
|
|
@@ -12451,9 +12454,13 @@ export namespace Protocol {
|
|
|
12451
12454
|
|
|
12452
12455
|
export interface GetAppIdResponse {
|
|
12453
12456
|
/**
|
|
12454
|
-
*
|
|
12457
|
+
* App id, either from manifest's id attribute or computed from start_url
|
|
12455
12458
|
*/
|
|
12456
12459
|
appId?: string;
|
|
12460
|
+
/**
|
|
12461
|
+
* Recommendation for manifest's id attribute to match current id computed from start_url
|
|
12462
|
+
*/
|
|
12463
|
+
recommendedId?: string;
|
|
12457
12464
|
}
|
|
12458
12465
|
|
|
12459
12466
|
export interface GetCookiesResponse {
|