devtools-protocol 0.0.1084670 → 0.0.1085790
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.
@@ -16442,7 +16442,8 @@
|
|
16442
16442
|
"SameSiteCrossOriginNavigationNotOptIn",
|
16443
16443
|
"ActivationNavigationParameterMismatch",
|
16444
16444
|
"ActivatedInBackground",
|
16445
|
-
"EmbedderHostDisallowed"
|
16445
|
+
"EmbedderHostDisallowed",
|
16446
|
+
"ActivationNavigationDestroyedBeforeSuccess"
|
16446
16447
|
]
|
16447
16448
|
}
|
16448
16449
|
],
|
@@ -19836,6 +19837,17 @@
|
|
19836
19837
|
}
|
19837
19838
|
]
|
19838
19839
|
},
|
19840
|
+
{
|
19841
|
+
"name": "resetSharedStorageBudget",
|
19842
|
+
"description": "Resets the budget for `ownerOrigin` by clearing all budget withdrawals.",
|
19843
|
+
"experimental": true,
|
19844
|
+
"parameters": [
|
19845
|
+
{
|
19846
|
+
"name": "ownerOrigin",
|
19847
|
+
"type": "string"
|
19848
|
+
}
|
19849
|
+
]
|
19850
|
+
},
|
19839
19851
|
{
|
19840
19852
|
"name": "setSharedStorageTracking",
|
19841
19853
|
"description": "Enables/disables issuing of sharedStorageAccessed events.",
|
package/package.json
CHANGED
package/pdl/browser_protocol.pdl
CHANGED
@@ -8553,6 +8553,7 @@ domain Page
|
|
8553
8553
|
ActivationNavigationParameterMismatch
|
8554
8554
|
ActivatedInBackground
|
8555
8555
|
EmbedderHostDisallowed
|
8556
|
+
ActivationNavigationDestroyedBeforeSuccess
|
8556
8557
|
|
8557
8558
|
# Fired when a prerender attempt is completed.
|
8558
8559
|
experimental event prerenderAttemptCompleted
|
@@ -9381,6 +9382,11 @@ experimental domain Storage
|
|
9381
9382
|
parameters
|
9382
9383
|
string ownerOrigin
|
9383
9384
|
|
9385
|
+
# Resets the budget for `ownerOrigin` by clearing all budget withdrawals.
|
9386
|
+
experimental command resetSharedStorageBudget
|
9387
|
+
parameters
|
9388
|
+
string ownerOrigin
|
9389
|
+
|
9384
9390
|
# Enables/disables issuing of sharedStorageAccessed events.
|
9385
9391
|
experimental command setSharedStorageTracking
|
9386
9392
|
parameters
|
@@ -4151,6 +4151,13 @@ export namespace ProtocolMapping {
|
|
4151
4151
|
paramsType: [Protocol.Storage.ClearSharedStorageEntriesRequest];
|
4152
4152
|
returnType: void;
|
4153
4153
|
};
|
4154
|
+
/**
|
4155
|
+
* Resets the budget for `ownerOrigin` by clearing all budget withdrawals.
|
4156
|
+
*/
|
4157
|
+
'Storage.resetSharedStorageBudget': {
|
4158
|
+
paramsType: [Protocol.Storage.ResetSharedStorageBudgetRequest];
|
4159
|
+
returnType: void;
|
4160
|
+
};
|
4154
4161
|
/**
|
4155
4162
|
* Enables/disables issuing of sharedStorageAccessed events.
|
4156
4163
|
*/
|
@@ -3343,6 +3343,11 @@ export namespace ProtocolProxyApi {
|
|
3343
3343
|
*/
|
3344
3344
|
clearSharedStorageEntries(params: Protocol.Storage.ClearSharedStorageEntriesRequest): Promise<void>;
|
3345
3345
|
|
3346
|
+
/**
|
3347
|
+
* Resets the budget for `ownerOrigin` by clearing all budget withdrawals.
|
3348
|
+
*/
|
3349
|
+
resetSharedStorageBudget(params: Protocol.Storage.ResetSharedStorageBudgetRequest): Promise<void>;
|
3350
|
+
|
3346
3351
|
/**
|
3347
3352
|
* Enables/disables issuing of sharedStorageAccessed events.
|
3348
3353
|
*/
|
package/types/protocol.d.ts
CHANGED
@@ -12867,7 +12867,7 @@ export namespace Protocol {
|
|
12867
12867
|
/**
|
12868
12868
|
* List of FinalStatus reasons for Prerender2.
|
12869
12869
|
*/
|
12870
|
-
export type PrerenderFinalStatus = ('Activated' | 'Destroyed' | 'LowEndDevice' | 'InvalidSchemeRedirect' | 'InvalidSchemeNavigation' | 'InProgressNavigation' | 'NavigationRequestBlockedByCsp' | 'MainFrameNavigation' | 'MojoBinderPolicy' | 'RendererProcessCrashed' | 'RendererProcessKilled' | 'Download' | 'TriggerDestroyed' | 'NavigationNotCommitted' | 'NavigationBadHttpStatus' | 'ClientCertRequested' | 'NavigationRequestNetworkError' | 'MaxNumOfRunningPrerendersExceeded' | 'CancelAllHostsForTesting' | 'DidFailLoad' | 'Stop' | 'SslCertificateError' | 'LoginAuthRequested' | 'UaChangeRequiresReload' | 'BlockedByClient' | 'AudioOutputDeviceRequested' | 'MixedContent' | 'TriggerBackgrounded' | 'EmbedderTriggeredAndCrossOriginRedirected' | 'MemoryLimitExceeded' | 'FailToGetMemoryUsage' | 'DataSaverEnabled' | 'HasEffectiveUrl' | 'ActivatedBeforeStarted' | 'InactivePageRestriction' | 'StartFailed' | 'TimeoutBackgrounded' | 'CrossSiteRedirect' | 'CrossSiteNavigation' | 'SameSiteCrossOriginRedirect' | 'SameSiteCrossOriginNavigation' | 'SameSiteCrossOriginRedirectNotOptIn' | 'SameSiteCrossOriginNavigationNotOptIn' | 'ActivationNavigationParameterMismatch' | 'ActivatedInBackground' | 'EmbedderHostDisallowed');
|
12870
|
+
export type PrerenderFinalStatus = ('Activated' | 'Destroyed' | 'LowEndDevice' | 'InvalidSchemeRedirect' | 'InvalidSchemeNavigation' | 'InProgressNavigation' | 'NavigationRequestBlockedByCsp' | 'MainFrameNavigation' | 'MojoBinderPolicy' | 'RendererProcessCrashed' | 'RendererProcessKilled' | 'Download' | 'TriggerDestroyed' | 'NavigationNotCommitted' | 'NavigationBadHttpStatus' | 'ClientCertRequested' | 'NavigationRequestNetworkError' | 'MaxNumOfRunningPrerendersExceeded' | 'CancelAllHostsForTesting' | 'DidFailLoad' | 'Stop' | 'SslCertificateError' | 'LoginAuthRequested' | 'UaChangeRequiresReload' | 'BlockedByClient' | 'AudioOutputDeviceRequested' | 'MixedContent' | 'TriggerBackgrounded' | 'EmbedderTriggeredAndCrossOriginRedirected' | 'MemoryLimitExceeded' | 'FailToGetMemoryUsage' | 'DataSaverEnabled' | 'HasEffectiveUrl' | 'ActivatedBeforeStarted' | 'InactivePageRestriction' | 'StartFailed' | 'TimeoutBackgrounded' | 'CrossSiteRedirect' | 'CrossSiteNavigation' | 'SameSiteCrossOriginRedirect' | 'SameSiteCrossOriginNavigation' | 'SameSiteCrossOriginRedirectNotOptIn' | 'SameSiteCrossOriginNavigationNotOptIn' | 'ActivationNavigationParameterMismatch' | 'ActivatedInBackground' | 'EmbedderHostDisallowed' | 'ActivationNavigationDestroyedBeforeSuccess');
|
12871
12871
|
|
12872
12872
|
export interface AddScriptToEvaluateOnLoadRequest {
|
12873
12873
|
scriptSource: string;
|
@@ -14934,6 +14934,10 @@ export namespace Protocol {
|
|
14934
14934
|
ownerOrigin: string;
|
14935
14935
|
}
|
14936
14936
|
|
14937
|
+
export interface ResetSharedStorageBudgetRequest {
|
14938
|
+
ownerOrigin: string;
|
14939
|
+
}
|
14940
|
+
|
14937
14941
|
export interface SetSharedStorageTrackingRequest {
|
14938
14942
|
enable: boolean;
|
14939
14943
|
}
|