devtools-protocol 0.0.1004709 → 0.0.1005560
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.
@@ -1557,7 +1557,6 @@
|
|
1557
1557
|
"CrossOriginWindowAlert",
|
1558
1558
|
"CrossOriginWindowConfirm",
|
1559
1559
|
"CSSSelectorInternalMediaControlsOverlayCastButton",
|
1560
|
-
"CustomCursorIntersectsViewport",
|
1561
1560
|
"DeprecationExample",
|
1562
1561
|
"DocumentDomainSettingWithoutOriginAgentClusterHeader",
|
1563
1562
|
"EventPath",
|
@@ -1575,7 +1574,6 @@
|
|
1575
1574
|
"NotificationPermissionRequestedIframe",
|
1576
1575
|
"ObsoleteWebRtcCipherSuite",
|
1577
1576
|
"PaymentRequestBasicCard",
|
1578
|
-
"PaymentRequestShowWithoutGesture",
|
1579
1577
|
"PictureSourceSrc",
|
1580
1578
|
"PrefixedCancelAnimationFrame",
|
1581
1579
|
"PrefixedRequestAnimationFrame",
|
@@ -7473,21 +7471,6 @@
|
|
7473
7471
|
"type": "string"
|
7474
7472
|
}
|
7475
7473
|
]
|
7476
|
-
},
|
7477
|
-
{
|
7478
|
-
"name": "getStorageKeyForFrame",
|
7479
|
-
"parameters": [
|
7480
|
-
{
|
7481
|
-
"name": "frameId",
|
7482
|
-
"$ref": "Page.FrameId"
|
7483
|
-
}
|
7484
|
-
],
|
7485
|
-
"returns": [
|
7486
|
-
{
|
7487
|
-
"name": "storageKey",
|
7488
|
-
"$ref": "SerializedStorageKey"
|
7489
|
-
}
|
7490
|
-
]
|
7491
7474
|
}
|
7492
7475
|
],
|
7493
7476
|
"events": [
|
@@ -18935,6 +18918,22 @@
|
|
18935
18918
|
}
|
18936
18919
|
],
|
18937
18920
|
"commands": [
|
18921
|
+
{
|
18922
|
+
"name": "getStorageKeyForFrame",
|
18923
|
+
"description": "Returns a storage key given a frame id.",
|
18924
|
+
"parameters": [
|
18925
|
+
{
|
18926
|
+
"name": "frameId",
|
18927
|
+
"$ref": "Page.FrameId"
|
18928
|
+
}
|
18929
|
+
],
|
18930
|
+
"returns": [
|
18931
|
+
{
|
18932
|
+
"name": "storageKey",
|
18933
|
+
"$ref": "SerializedStorageKey"
|
18934
|
+
}
|
18935
|
+
]
|
18936
|
+
},
|
18938
18937
|
{
|
18939
18938
|
"name": "clearDataForOrigin",
|
18940
18939
|
"description": "Clears storage for origin.",
|
package/package.json
CHANGED
package/pdl/browser_protocol.pdl
CHANGED
@@ -751,7 +751,6 @@ experimental domain Audits
|
|
751
751
|
CrossOriginWindowAlert
|
752
752
|
CrossOriginWindowConfirm
|
753
753
|
CSSSelectorInternalMediaControlsOverlayCastButton
|
754
|
-
CustomCursorIntersectsViewport
|
755
754
|
DeprecationExample
|
756
755
|
DocumentDomainSettingWithoutOriginAgentClusterHeader
|
757
756
|
EventPath
|
@@ -769,7 +768,6 @@ experimental domain Audits
|
|
769
768
|
NotificationPermissionRequestedIframe
|
770
769
|
ObsoleteWebRtcCipherSuite
|
771
770
|
PaymentRequestBasicCard
|
772
|
-
PaymentRequestShowWithoutGesture
|
773
771
|
PictureSourceSrc
|
774
772
|
PrefixedCancelAnimationFrame
|
775
773
|
PrefixedRequestAnimationFrame
|
@@ -3435,12 +3433,6 @@ experimental domain DOMStorage
|
|
3435
3433
|
string key
|
3436
3434
|
string value
|
3437
3435
|
|
3438
|
-
command getStorageKeyForFrame
|
3439
|
-
parameters
|
3440
|
-
Page.FrameId frameId
|
3441
|
-
returns
|
3442
|
-
SerializedStorageKey storageKey
|
3443
|
-
|
3444
3436
|
event domStorageItemAdded
|
3445
3437
|
parameters
|
3446
3438
|
StorageId storageId
|
@@ -8905,6 +8897,13 @@ experimental domain Storage
|
|
8905
8897
|
array of InterestGroupAd ads
|
8906
8898
|
array of InterestGroupAd adComponents
|
8907
8899
|
|
8900
|
+
# Returns a storage key given a frame id.
|
8901
|
+
command getStorageKeyForFrame
|
8902
|
+
parameters
|
8903
|
+
Page.FrameId frameId
|
8904
|
+
returns
|
8905
|
+
SerializedStorageKey storageKey
|
8906
|
+
|
8908
8907
|
# Clears storage for origin.
|
8909
8908
|
command clearDataForOrigin
|
8910
8909
|
parameters
|
@@ -2352,10 +2352,6 @@ export namespace ProtocolMapping {
|
|
2352
2352
|
paramsType: [Protocol.DOMStorage.SetDOMStorageItemRequest];
|
2353
2353
|
returnType: void;
|
2354
2354
|
};
|
2355
|
-
'DOMStorage.getStorageKeyForFrame': {
|
2356
|
-
paramsType: [Protocol.DOMStorage.GetStorageKeyForFrameRequest];
|
2357
|
-
returnType: Protocol.DOMStorage.GetStorageKeyForFrameResponse;
|
2358
|
-
};
|
2359
2355
|
/**
|
2360
2356
|
* Disables database tracking, prevents database events from being sent to the client.
|
2361
2357
|
*/
|
@@ -3930,6 +3926,13 @@ export namespace ProtocolMapping {
|
|
3930
3926
|
paramsType: [Protocol.ServiceWorker.UpdateRegistrationRequest];
|
3931
3927
|
returnType: void;
|
3932
3928
|
};
|
3929
|
+
/**
|
3930
|
+
* Returns a storage key given a frame id.
|
3931
|
+
*/
|
3932
|
+
'Storage.getStorageKeyForFrame': {
|
3933
|
+
paramsType: [Protocol.Storage.GetStorageKeyForFrameRequest];
|
3934
|
+
returnType: Protocol.Storage.GetStorageKeyForFrameResponse;
|
3935
|
+
};
|
3933
3936
|
/**
|
3934
3937
|
* Clears storage for origin.
|
3935
3938
|
*/
|
@@ -1614,8 +1614,6 @@ export namespace ProtocolProxyApi {
|
|
1614
1614
|
|
1615
1615
|
setDOMStorageItem(params: Protocol.DOMStorage.SetDOMStorageItemRequest): Promise<void>;
|
1616
1616
|
|
1617
|
-
getStorageKeyForFrame(params: Protocol.DOMStorage.GetStorageKeyForFrameRequest): Promise<Protocol.DOMStorage.GetStorageKeyForFrameResponse>;
|
1618
|
-
|
1619
1617
|
on(event: 'domStorageItemAdded', listener: (params: Protocol.DOMStorage.DomStorageItemAddedEvent) => void): void;
|
1620
1618
|
|
1621
1619
|
on(event: 'domStorageItemRemoved', listener: (params: Protocol.DOMStorage.DomStorageItemRemovedEvent) => void): void;
|
@@ -3189,6 +3187,11 @@ export namespace ProtocolProxyApi {
|
|
3189
3187
|
}
|
3190
3188
|
|
3191
3189
|
export interface StorageApi {
|
3190
|
+
/**
|
3191
|
+
* Returns a storage key given a frame id.
|
3192
|
+
*/
|
3193
|
+
getStorageKeyForFrame(params: Protocol.Storage.GetStorageKeyForFrameRequest): Promise<Protocol.Storage.GetStorageKeyForFrameResponse>;
|
3194
|
+
|
3192
3195
|
/**
|
3193
3196
|
* Clears storage for origin.
|
3194
3197
|
*/
|
package/types/protocol.d.ts
CHANGED
@@ -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' | '
|
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');
|
3382
3382
|
|
3383
3383
|
/**
|
3384
3384
|
* This issue tracks information needed to print a deprecation message.
|
@@ -7142,14 +7142,6 @@ export namespace Protocol {
|
|
7142
7142
|
value: string;
|
7143
7143
|
}
|
7144
7144
|
|
7145
|
-
export interface GetStorageKeyForFrameRequest {
|
7146
|
-
frameId: Page.FrameId;
|
7147
|
-
}
|
7148
|
-
|
7149
|
-
export interface GetStorageKeyForFrameResponse {
|
7150
|
-
storageKey: SerializedStorageKey;
|
7151
|
-
}
|
7152
|
-
|
7153
7145
|
export interface DomStorageItemAddedEvent {
|
7154
7146
|
storageId: StorageId;
|
7155
7147
|
key: string;
|
@@ -14350,6 +14342,14 @@ export namespace Protocol {
|
|
14350
14342
|
adComponents: InterestGroupAd[];
|
14351
14343
|
}
|
14352
14344
|
|
14345
|
+
export interface GetStorageKeyForFrameRequest {
|
14346
|
+
frameId: Page.FrameId;
|
14347
|
+
}
|
14348
|
+
|
14349
|
+
export interface GetStorageKeyForFrameResponse {
|
14350
|
+
storageKey: SerializedStorageKey;
|
14351
|
+
}
|
14352
|
+
|
14353
14353
|
export interface ClearDataForOriginRequest {
|
14354
14354
|
/**
|
14355
14355
|
* Security origin.
|