devtools-protocol 0.0.1135028 → 0.0.1136950
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.
@@ -10279,7 +10279,6 @@
|
|
10279
10279
|
{
|
10280
10280
|
"name": "compositingReasons",
|
10281
10281
|
"description": "A list of strings specifying reasons for the given layer to become composited.",
|
10282
|
-
"deprecated": true,
|
10283
10282
|
"type": "array",
|
10284
10283
|
"items": {
|
10285
10284
|
"type": "string"
|
@@ -15443,6 +15442,7 @@
|
|
15443
15442
|
"payment",
|
15444
15443
|
"picture-in-picture",
|
15445
15444
|
"private-aggregation",
|
15445
|
+
"private-state-token-issuance",
|
15446
15446
|
"private-state-token-redemption",
|
15447
15447
|
"publickey-credentials-get",
|
15448
15448
|
"run-ad-auction",
|
@@ -19948,6 +19948,20 @@
|
|
19948
19948
|
"type": "string"
|
19949
19949
|
}
|
19950
19950
|
]
|
19951
|
+
},
|
19952
|
+
{
|
19953
|
+
"name": "runBounceTrackingMitigations",
|
19954
|
+
"description": "Deletes state for sites identified as potential bounce trackers, immediately.",
|
19955
|
+
"experimental": true,
|
19956
|
+
"returns": [
|
19957
|
+
{
|
19958
|
+
"name": "deletedSites",
|
19959
|
+
"type": "array",
|
19960
|
+
"items": {
|
19961
|
+
"type": "string"
|
19962
|
+
}
|
19963
|
+
}
|
19964
|
+
]
|
19951
19965
|
}
|
19952
19966
|
],
|
19953
19967
|
"events": [
|
package/package.json
CHANGED
package/pdl/browser_protocol.pdl
CHANGED
@@ -707,6 +707,7 @@ experimental domain Audits
|
|
707
707
|
# TODO(apaseltiner): Rename this to InvalidRegisterSourceHeader
|
708
708
|
InvalidHeader
|
709
709
|
InvalidRegisterTriggerHeader
|
710
|
+
# TODO(apaseltiner): Remove this issue once DevTools stops referencing it.
|
710
711
|
InvalidEligibleHeader
|
711
712
|
SourceAndTriggerHeaders
|
712
713
|
SourceIgnored
|
@@ -4668,7 +4669,7 @@ experimental domain LayerTree
|
|
4668
4669
|
LayerId layerId
|
4669
4670
|
returns
|
4670
4671
|
# A list of strings specifying reasons for the given layer to become composited.
|
4671
|
-
|
4672
|
+
array of string compositingReasons
|
4672
4673
|
# A list of strings specifying reason IDs for the given layer to become composited.
|
4673
4674
|
array of string compositingReasonIds
|
4674
4675
|
|
@@ -7228,6 +7229,7 @@ domain Page
|
|
7228
7229
|
payment
|
7229
7230
|
picture-in-picture
|
7230
7231
|
private-aggregation
|
7232
|
+
private-state-token-issuance
|
7231
7233
|
private-state-token-redemption
|
7232
7234
|
publickey-credentials-get
|
7233
7235
|
run-ad-auction
|
@@ -9384,6 +9386,11 @@ experimental domain Storage
|
|
9384
9386
|
string storageKey
|
9385
9387
|
string bucketName
|
9386
9388
|
|
9389
|
+
# Deletes state for sites identified as potential bounce trackers, immediately.
|
9390
|
+
experimental command runBounceTrackingMitigations
|
9391
|
+
returns
|
9392
|
+
array of string deletedSites
|
9393
|
+
|
9387
9394
|
# A cache's contents have been modified.
|
9388
9395
|
event cacheStorageContentUpdated
|
9389
9396
|
parameters
|
@@ -4221,6 +4221,13 @@ export namespace ProtocolMapping {
|
|
4221
4221
|
paramsType: [Protocol.Storage.DeleteStorageBucketRequest];
|
4222
4222
|
returnType: void;
|
4223
4223
|
};
|
4224
|
+
/**
|
4225
|
+
* Deletes state for sites identified as potential bounce trackers, immediately.
|
4226
|
+
*/
|
4227
|
+
'Storage.runBounceTrackingMitigations': {
|
4228
|
+
paramsType: [];
|
4229
|
+
returnType: Protocol.Storage.RunBounceTrackingMitigationsResponse;
|
4230
|
+
};
|
4224
4231
|
/**
|
4225
4232
|
* Returns information about the system.
|
4226
4233
|
*/
|
@@ -3375,6 +3375,11 @@ export namespace ProtocolProxyApi {
|
|
3375
3375
|
*/
|
3376
3376
|
deleteStorageBucket(params: Protocol.Storage.DeleteStorageBucketRequest): Promise<void>;
|
3377
3377
|
|
3378
|
+
/**
|
3379
|
+
* Deletes state for sites identified as potential bounce trackers, immediately.
|
3380
|
+
*/
|
3381
|
+
runBounceTrackingMitigations(): Promise<Protocol.Storage.RunBounceTrackingMitigationsResponse>;
|
3382
|
+
|
3378
3383
|
/**
|
3379
3384
|
* A cache's contents have been modified.
|
3380
3385
|
*/
|
package/types/protocol.d.ts
CHANGED
@@ -12414,7 +12414,7 @@ export namespace Protocol {
|
|
12414
12414
|
* All Permissions Policy features. This enum should match the one defined
|
12415
12415
|
* in third_party/blink/renderer/core/permissions_policy/permissions_policy_features.json5.
|
12416
12416
|
*/
|
12417
|
-
export type PermissionsPolicyFeature = ('accelerometer' | 'ambient-light-sensor' | 'attribution-reporting' | 'autoplay' | 'bluetooth' | 'browsing-topics' | 'camera' | 'ch-dpr' | 'ch-device-memory' | 'ch-downlink' | 'ch-ect' | 'ch-prefers-color-scheme' | 'ch-prefers-reduced-motion' | 'ch-rtt' | 'ch-save-data' | 'ch-ua' | 'ch-ua-arch' | 'ch-ua-bitness' | 'ch-ua-platform' | 'ch-ua-model' | 'ch-ua-mobile' | 'ch-ua-full' | 'ch-ua-full-version' | 'ch-ua-full-version-list' | 'ch-ua-platform-version' | 'ch-ua-reduced' | 'ch-ua-wow64' | 'ch-viewport-height' | 'ch-viewport-width' | 'ch-width' | 'clipboard-read' | 'clipboard-write' | 'compute-pressure' | 'cross-origin-isolated' | 'direct-sockets' | 'display-capture' | 'document-domain' | 'encrypted-media' | 'execution-while-out-of-viewport' | 'execution-while-not-rendered' | 'focus-without-user-activation' | 'fullscreen' | 'frobulate' | 'gamepad' | 'geolocation' | 'gyroscope' | 'hid' | 'identity-credentials-get' | 'idle-detection' | 'interest-cohort' | 'join-ad-interest-group' | 'keyboard-map' | 'local-fonts' | 'magnetometer' | 'microphone' | 'midi' | 'otp-credentials' | 'payment' | 'picture-in-picture' | 'private-aggregation' | 'private-state-token-redemption' | 'publickey-credentials-get' | 'run-ad-auction' | 'screen-wake-lock' | 'serial' | 'shared-autofill' | 'shared-storage' | 'shared-storage-select-url' | 'smart-card' | 'storage-access' | 'sync-xhr' | 'unload' | 'usb' | 'vertical-scroll' | 'web-share' | 'window-management' | 'window-placement' | 'xr-spatial-tracking');
|
12417
|
+
export type PermissionsPolicyFeature = ('accelerometer' | 'ambient-light-sensor' | 'attribution-reporting' | 'autoplay' | 'bluetooth' | 'browsing-topics' | 'camera' | 'ch-dpr' | 'ch-device-memory' | 'ch-downlink' | 'ch-ect' | 'ch-prefers-color-scheme' | 'ch-prefers-reduced-motion' | 'ch-rtt' | 'ch-save-data' | 'ch-ua' | 'ch-ua-arch' | 'ch-ua-bitness' | 'ch-ua-platform' | 'ch-ua-model' | 'ch-ua-mobile' | 'ch-ua-full' | 'ch-ua-full-version' | 'ch-ua-full-version-list' | 'ch-ua-platform-version' | 'ch-ua-reduced' | 'ch-ua-wow64' | 'ch-viewport-height' | 'ch-viewport-width' | 'ch-width' | 'clipboard-read' | 'clipboard-write' | 'compute-pressure' | 'cross-origin-isolated' | 'direct-sockets' | 'display-capture' | 'document-domain' | 'encrypted-media' | 'execution-while-out-of-viewport' | 'execution-while-not-rendered' | 'focus-without-user-activation' | 'fullscreen' | 'frobulate' | 'gamepad' | 'geolocation' | 'gyroscope' | 'hid' | 'identity-credentials-get' | 'idle-detection' | 'interest-cohort' | 'join-ad-interest-group' | 'keyboard-map' | 'local-fonts' | 'magnetometer' | 'microphone' | 'midi' | 'otp-credentials' | 'payment' | 'picture-in-picture' | 'private-aggregation' | 'private-state-token-issuance' | 'private-state-token-redemption' | 'publickey-credentials-get' | 'run-ad-auction' | 'screen-wake-lock' | 'serial' | 'shared-autofill' | 'shared-storage' | 'shared-storage-select-url' | 'smart-card' | 'storage-access' | 'sync-xhr' | 'unload' | 'usb' | 'vertical-scroll' | 'web-share' | 'window-management' | 'window-placement' | 'xr-spatial-tracking');
|
12418
12418
|
|
12419
12419
|
/**
|
12420
12420
|
* Reason for a permissions policy feature to be disabled.
|
@@ -15033,6 +15033,10 @@ export namespace Protocol {
|
|
15033
15033
|
bucketName: string;
|
15034
15034
|
}
|
15035
15035
|
|
15036
|
+
export interface RunBounceTrackingMitigationsResponse {
|
15037
|
+
deletedSites: string[];
|
15038
|
+
}
|
15039
|
+
|
15036
15040
|
/**
|
15037
15041
|
* A cache's contents have been modified.
|
15038
15042
|
*/
|