devtools-protocol 0.0.923359 → 0.0.924707
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 +42 -3
- package/package.json +1 -1
- package/pdl/browser_protocol.pdl +23 -2
- package/types/protocol-mapping.d.ts +1 -0
- package/types/protocol-proxy-api.d.ts +1 -0
- package/types/protocol.d.ts +24 -3
package/changelog.md
CHANGED
|
@@ -1,5 +1,24 @@
|
|
|
1
1
|
|
|
2
2
|
|
|
3
|
+
## Roll protocol to r924232
|
|
4
|
+
###### _2021-09-23 02:15:23_ | Diff: [f300e4d...b32cbf9](https://github.com/ChromeDevTools/devtools-protocol/compare/f300e4d...b32cbf9)
|
|
5
|
+
#### `Page`: modified command
|
|
6
|
+
* [`Page.getAppId`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-getAppId) - `description` updated. The `appId` in the return value had `description` _updated_. The return value's `recommendedId` _added_.
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
## Roll protocol to r923714
|
|
10
|
+
###### _2021-09-21 20:15:27_ | Diff: [d6f4069...3c9570a](https://github.com/ChromeDevTools/devtools-protocol/compare/d6f4069...3c9570a)
|
|
11
|
+
#### `Page`: modified type
|
|
12
|
+
* [`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_.
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
## Roll protocol to r923359
|
|
16
|
+
###### _2021-09-21 06:15:22_ | Diff: [384a24c...d6f4069](https://github.com/ChromeDevTools/devtools-protocol/compare/384a24c...d6f4069)
|
|
17
|
+
#### `Network`: modified types
|
|
18
|
+
* [`Network.SetCookieBlockedReason`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-SetCookieBlockedReason) - The enum's `NameValuePairExceedsMaxSize` _added_.
|
|
19
|
+
* [`Network.CookieBlockedReason`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-CookieBlockedReason) - The enum's `NameValuePairExceedsMaxSize` _added_.
|
|
20
|
+
|
|
21
|
+
|
|
3
22
|
## Roll protocol to r923255
|
|
4
23
|
###### _2021-09-20 23:15:25_ | Diff: [f62186c...384a24c](https://github.com/ChromeDevTools/devtools-protocol/compare/f62186c...384a24c)
|
|
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
|
],
|
|
@@ -1628,6 +1630,30 @@
|
|
|
1628
1630
|
}
|
|
1629
1631
|
]
|
|
1630
1632
|
},
|
|
1633
|
+
{
|
|
1634
|
+
"id": "GenericIssueErrorType",
|
|
1635
|
+
"type": "string",
|
|
1636
|
+
"enum": [
|
|
1637
|
+
"CrossOriginPortalPostMessageError"
|
|
1638
|
+
]
|
|
1639
|
+
},
|
|
1640
|
+
{
|
|
1641
|
+
"id": "GenericIssueDetails",
|
|
1642
|
+
"description": "Depending on the concrete errorType, different properties are set.",
|
|
1643
|
+
"type": "object",
|
|
1644
|
+
"properties": [
|
|
1645
|
+
{
|
|
1646
|
+
"name": "errorType",
|
|
1647
|
+
"description": "Issues with the same errorType are aggregated in the frontend.",
|
|
1648
|
+
"$ref": "GenericIssueErrorType"
|
|
1649
|
+
},
|
|
1650
|
+
{
|
|
1651
|
+
"name": "frameId",
|
|
1652
|
+
"optional": true,
|
|
1653
|
+
"$ref": "Page.FrameId"
|
|
1654
|
+
}
|
|
1655
|
+
]
|
|
1656
|
+
},
|
|
1631
1657
|
{
|
|
1632
1658
|
"id": "InspectorIssueCode",
|
|
1633
1659
|
"description": "A unique identifier for the type of issue. Each type may use one of the\noptional fields in InspectorIssueDetails to convey more specific\ninformation about the kind of issue.",
|
|
@@ -1645,7 +1671,8 @@
|
|
|
1645
1671
|
"AttributionReportingIssue",
|
|
1646
1672
|
"QuirksModeIssue",
|
|
1647
1673
|
"NavigatorUserAgentIssue",
|
|
1648
|
-
"WasmCrossOriginModuleSharingIssue"
|
|
1674
|
+
"WasmCrossOriginModuleSharingIssue",
|
|
1675
|
+
"GenericIssue"
|
|
1649
1676
|
]
|
|
1650
1677
|
},
|
|
1651
1678
|
{
|
|
@@ -1717,6 +1744,11 @@
|
|
|
1717
1744
|
"name": "wasmCrossOriginModuleSharingIssue",
|
|
1718
1745
|
"optional": true,
|
|
1719
1746
|
"$ref": "WasmCrossOriginModuleSharingIssueDetails"
|
|
1747
|
+
},
|
|
1748
|
+
{
|
|
1749
|
+
"name": "genericIssueDetails",
|
|
1750
|
+
"optional": true,
|
|
1751
|
+
"$ref": "GenericIssueDetails"
|
|
1720
1752
|
}
|
|
1721
1753
|
]
|
|
1722
1754
|
},
|
|
@@ -15472,6 +15504,7 @@
|
|
|
15472
15504
|
"ContentWebUSB",
|
|
15473
15505
|
"ContentMediaSession",
|
|
15474
15506
|
"ContentMediaSessionService",
|
|
15507
|
+
"ContentMediaPlay",
|
|
15475
15508
|
"EmbedderPopupBlockerTabHelper",
|
|
15476
15509
|
"EmbedderSafeBrowsingTriggeredPopupBlocker",
|
|
15477
15510
|
"EmbedderSafeBrowsingThreatDetails",
|
|
@@ -15779,12 +15812,18 @@
|
|
|
15779
15812
|
},
|
|
15780
15813
|
{
|
|
15781
15814
|
"name": "getAppId",
|
|
15782
|
-
"description": "Returns the unique (PWA) app id
|
|
15815
|
+
"description": "Returns the unique (PWA) app id.\nOnly returns values if the feature flag 'WebAppEnableManifestId' is enabled",
|
|
15783
15816
|
"experimental": true,
|
|
15784
15817
|
"returns": [
|
|
15785
15818
|
{
|
|
15786
15819
|
"name": "appId",
|
|
15787
|
-
"description": "
|
|
15820
|
+
"description": "App id, either from manifest's id attribute or computed from start_url",
|
|
15821
|
+
"optional": true,
|
|
15822
|
+
"type": "string"
|
|
15823
|
+
},
|
|
15824
|
+
{
|
|
15825
|
+
"name": "recommendedId",
|
|
15826
|
+
"description": "Recommendation for manifest's id attribute to match current id computed from start_url",
|
|
15788
15827
|
"optional": true,
|
|
15789
15828
|
"type": "string"
|
|
15790
15829
|
}
|
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.
|
|
@@ -775,6 +776,17 @@ experimental domain Audits
|
|
|
775
776
|
string targetOrigin
|
|
776
777
|
boolean isWarning
|
|
777
778
|
|
|
779
|
+
type GenericIssueErrorType extends string
|
|
780
|
+
enum
|
|
781
|
+
CrossOriginPortalPostMessageError
|
|
782
|
+
|
|
783
|
+
# Depending on the concrete errorType, different properties are set.
|
|
784
|
+
type GenericIssueDetails extends object
|
|
785
|
+
properties
|
|
786
|
+
# Issues with the same errorType are aggregated in the frontend.
|
|
787
|
+
GenericIssueErrorType errorType
|
|
788
|
+
optional Page.FrameId frameId
|
|
789
|
+
|
|
778
790
|
# A unique identifier for the type of issue. Each type may use one of the
|
|
779
791
|
# optional fields in InspectorIssueDetails to convey more specific
|
|
780
792
|
# information about the kind of issue.
|
|
@@ -793,6 +805,7 @@ experimental domain Audits
|
|
|
793
805
|
QuirksModeIssue
|
|
794
806
|
NavigatorUserAgentIssue
|
|
795
807
|
WasmCrossOriginModuleSharingIssue
|
|
808
|
+
GenericIssue
|
|
796
809
|
|
|
797
810
|
# This struct holds a list of optional fields with additional information
|
|
798
811
|
# specific to the kind of issue. When adding a new issue code, please also
|
|
@@ -812,6 +825,7 @@ experimental domain Audits
|
|
|
812
825
|
optional QuirksModeIssueDetails quirksModeIssueDetails
|
|
813
826
|
optional NavigatorUserAgentIssueDetails navigatorUserAgentIssueDetails
|
|
814
827
|
optional WasmCrossOriginModuleSharingIssueDetails wasmCrossOriginModuleSharingIssue
|
|
828
|
+
optional GenericIssueDetails genericIssueDetails
|
|
815
829
|
|
|
816
830
|
# A unique id for a DevTools inspector issue. Allows other entities (e.g.
|
|
817
831
|
# exceptions, CDP message, console messages, etc.) to reference an issue.
|
|
@@ -7240,10 +7254,13 @@ domain Page
|
|
|
7240
7254
|
optional binary primaryIcon
|
|
7241
7255
|
|
|
7242
7256
|
# Returns the unique (PWA) app id.
|
|
7257
|
+
# Only returns values if the feature flag 'WebAppEnableManifestId' is enabled
|
|
7243
7258
|
experimental command getAppId
|
|
7244
7259
|
returns
|
|
7245
|
-
#
|
|
7260
|
+
# App id, either from manifest's id attribute or computed from start_url
|
|
7246
7261
|
optional string appId
|
|
7262
|
+
# Recommendation for manifest's id attribute to match current id computed from start_url
|
|
7263
|
+
optional string recommendedId
|
|
7247
7264
|
|
|
7248
7265
|
# Returns all browser cookies. Depending on the backend support, will return detailed cookie
|
|
7249
7266
|
# information in the `cookies` field.
|
|
@@ -7934,6 +7951,7 @@ domain Page
|
|
|
7934
7951
|
InjectedStyleSheet
|
|
7935
7952
|
Dummy
|
|
7936
7953
|
# Disabled for render frame host reasons
|
|
7954
|
+
# See content/browser/renderer_host/back_forward_cache_disable.h for explanations.
|
|
7937
7955
|
ContentSecurityHandler
|
|
7938
7956
|
ContentWebAuthenticationAPI
|
|
7939
7957
|
ContentFileChooser
|
|
@@ -7944,6 +7962,9 @@ domain Page
|
|
|
7944
7962
|
ContentWebUSB
|
|
7945
7963
|
ContentMediaSession
|
|
7946
7964
|
ContentMediaSessionService
|
|
7965
|
+
ContentMediaPlay
|
|
7966
|
+
|
|
7967
|
+
# See components/back_forward_cache/back_forward_cache_disable.h for explanations.
|
|
7947
7968
|
EmbedderPopupBlockerTabHelper
|
|
7948
7969
|
EmbedderSafeBrowsingTriggeredPopupBlocker
|
|
7949
7970
|
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
|
/**
|
|
@@ -3380,12 +3383,25 @@ export namespace Protocol {
|
|
|
3380
3383
|
isWarning: boolean;
|
|
3381
3384
|
}
|
|
3382
3385
|
|
|
3386
|
+
export type GenericIssueErrorType = ('CrossOriginPortalPostMessageError');
|
|
3387
|
+
|
|
3388
|
+
/**
|
|
3389
|
+
* Depending on the concrete errorType, different properties are set.
|
|
3390
|
+
*/
|
|
3391
|
+
export interface GenericIssueDetails {
|
|
3392
|
+
/**
|
|
3393
|
+
* Issues with the same errorType are aggregated in the frontend.
|
|
3394
|
+
*/
|
|
3395
|
+
errorType: GenericIssueErrorType;
|
|
3396
|
+
frameId?: Page.FrameId;
|
|
3397
|
+
}
|
|
3398
|
+
|
|
3383
3399
|
/**
|
|
3384
3400
|
* A unique identifier for the type of issue. Each type may use one of the
|
|
3385
3401
|
* optional fields in InspectorIssueDetails to convey more specific
|
|
3386
3402
|
* information about the kind of issue.
|
|
3387
3403
|
*/
|
|
3388
|
-
export type InspectorIssueCode = ('SameSiteCookieIssue' | 'MixedContentIssue' | 'BlockedByResponseIssue' | 'HeavyAdIssue' | 'ContentSecurityPolicyIssue' | 'SharedArrayBufferIssue' | 'TrustedWebActivityIssue' | 'LowTextContrastIssue' | 'CorsIssue' | 'AttributionReportingIssue' | 'QuirksModeIssue' | 'NavigatorUserAgentIssue' | 'WasmCrossOriginModuleSharingIssue');
|
|
3404
|
+
export type InspectorIssueCode = ('SameSiteCookieIssue' | 'MixedContentIssue' | 'BlockedByResponseIssue' | 'HeavyAdIssue' | 'ContentSecurityPolicyIssue' | 'SharedArrayBufferIssue' | 'TrustedWebActivityIssue' | 'LowTextContrastIssue' | 'CorsIssue' | 'AttributionReportingIssue' | 'QuirksModeIssue' | 'NavigatorUserAgentIssue' | 'WasmCrossOriginModuleSharingIssue' | 'GenericIssue');
|
|
3389
3405
|
|
|
3390
3406
|
/**
|
|
3391
3407
|
* This struct holds a list of optional fields with additional information
|
|
@@ -3406,6 +3422,7 @@ export namespace Protocol {
|
|
|
3406
3422
|
quirksModeIssueDetails?: QuirksModeIssueDetails;
|
|
3407
3423
|
navigatorUserAgentIssueDetails?: NavigatorUserAgentIssueDetails;
|
|
3408
3424
|
wasmCrossOriginModuleSharingIssue?: WasmCrossOriginModuleSharingIssueDetails;
|
|
3425
|
+
genericIssueDetails?: GenericIssueDetails;
|
|
3409
3426
|
}
|
|
3410
3427
|
|
|
3411
3428
|
/**
|
|
@@ -12286,7 +12303,7 @@ export namespace Protocol {
|
|
|
12286
12303
|
/**
|
|
12287
12304
|
* List of not restored reasons for back-forward cache.
|
|
12288
12305
|
*/
|
|
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');
|
|
12306
|
+
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
12307
|
|
|
12291
12308
|
/**
|
|
12292
12309
|
* Types of not restored reasons for back-forward cache.
|
|
@@ -12451,9 +12468,13 @@ export namespace Protocol {
|
|
|
12451
12468
|
|
|
12452
12469
|
export interface GetAppIdResponse {
|
|
12453
12470
|
/**
|
|
12454
|
-
*
|
|
12471
|
+
* App id, either from manifest's id attribute or computed from start_url
|
|
12455
12472
|
*/
|
|
12456
12473
|
appId?: string;
|
|
12474
|
+
/**
|
|
12475
|
+
* Recommendation for manifest's id attribute to match current id computed from start_url
|
|
12476
|
+
*/
|
|
12477
|
+
recommendedId?: string;
|
|
12457
12478
|
}
|
|
12458
12479
|
|
|
12459
12480
|
export interface GetCookiesResponse {
|