|
1 | 1 |
|
2 | 2 |
|
| 3 | +## Roll protocol to r1438564 — _2025-03-27T04:30:05.000Z_ |
| 4 | +###### Diff: [`432dff0...27b50e6`](https://github.com/ChromeDevTools/devtools-protocol/compare/432dff0...27b50e6) |
| 5 | + |
| 6 | +```diff |
| 7 | +@@ browser_protocol.pdl:10554 @@ experimental domain Storage |
| 8 | + bidderTrustedSignals |
| 9 | + sellerTrustedSignals |
| 10 | + |
| 11 | +- # Enum of shared storage access types. |
| 12 | +- type SharedStorageAccessType extends string |
| 13 | +- enum |
| 14 | +- documentAddModule |
| 15 | +- documentSelectURL |
| 16 | +- documentRun |
| 17 | +- documentSet |
| 18 | +- documentAppend |
| 19 | +- documentDelete |
| 20 | +- documentClear |
| 21 | +- documentGet |
| 22 | +- workletSet |
| 23 | +- workletAppend |
| 24 | +- workletDelete |
| 25 | +- workletClear |
| 26 | +- workletGet |
| 27 | +- workletKeys |
| 28 | +- workletEntries |
| 29 | +- workletLength |
| 30 | +- workletRemainingBudget |
| 31 | +- headerSet |
| 32 | +- headerAppend |
| 33 | +- headerDelete |
| 34 | +- headerClear |
| 35 | ++ # Enum of shared storage access scopes. |
| 36 | ++ type SharedStorageAccessScope extends string |
| 37 | ++ enum |
| 38 | ++ window |
| 39 | ++ sharedStorageWorklet |
| 40 | ++ protectedAudienceWorklet |
| 41 | ++ header |
| 42 | ++ |
| 43 | ++ # Enum of shared storage access methods. |
| 44 | ++ type SharedStorageAccessMethod extends string |
| 45 | ++ enum |
| 46 | ++ addModule |
| 47 | ++ createWorklet |
| 48 | ++ selectURL |
| 49 | ++ run |
| 50 | ++ batchUpdate |
| 51 | ++ set |
| 52 | ++ append |
| 53 | ++ delete |
| 54 | ++ clear |
| 55 | ++ get |
| 56 | ++ keys |
| 57 | ++ values |
| 58 | ++ entries |
| 59 | ++ length |
| 60 | ++ remainingBudget |
| 61 | + |
| 62 | + # Struct for a single key-value pair in an origin's shared storage. |
| 63 | + type SharedStorageEntry extends object |
| 64 | +@@ -10993,12 +10995,16 @@ experimental domain Storage |
| 65 | + parameters |
| 66 | + # Time of the access. |
| 67 | + Network.TimeSinceEpoch accessTime |
| 68 | ++ # Enum value indicating the access scope. |
| 69 | ++ SharedStorageAccessScope scope |
| 70 | + # Enum value indicating the Shared Storage API method invoked. |
| 71 | +- SharedStorageAccessType type |
| 72 | ++ SharedStorageAccessMethod method |
| 73 | + # DevTools Frame Token for the primary frame tree's root. |
| 74 | + Page.FrameId mainFrameId |
| 75 | +- # Serialized origin for the context that invoked the Shared Storage API. |
| 76 | ++ # Serialization of the origin owning the Shared Storage data. |
| 77 | + string ownerOrigin |
| 78 | ++ # Serialization of the site owning the Shared Storage data. |
| 79 | ++ string ownerSite |
| 80 | + # The sub-parameters wrapped by `params` are all optional and their |
| 81 | + # presence/absence depends on `type`. |
| 82 | + SharedStorageAccessParams params |
| 83 | +``` |
| 84 | + |
3 | 85 | ## Roll protocol to r1436416 — _2025-03-22T04:29:26.000Z_ |
4 | | -###### Diff: [`cf78806...fdfa272`](https://github.com/ChromeDevTools/devtools-protocol/compare/cf78806...fdfa272) |
| 86 | +###### Diff: [`cf78806...432dff0`](https://github.com/ChromeDevTools/devtools-protocol/compare/cf78806...432dff0) |
5 | 87 |
|
6 | 88 | ```diff |
7 | 89 | @@ browser_protocol.pdl:8464 @@ domain Page |
@@ -13275,23 +13357,6 @@ index 8e43695..7fd51df 100644 |
13275 | 13357 | - # recorded when it fails to get the memory usage. |
13276 | 13358 | - FailToGetMemoryUsage |
13277 | 13359 |
|
13278 | | - # Fired when a prerender attempt is completed. |
13279 | | - event prerenderAttemptCompleted |
13280 | | -``` |
13281 | | - |
13282 | | -## Roll protocol to r1023572 — _2022-07-13T04:33:15.000Z_ |
13283 | | -###### Diff: [`e4b5ddd...3f04136`](https://github.com/ChromeDevTools/devtools-protocol/compare/e4b5ddd...3f04136) |
13284 | | - |
13285 | | -```diff |
13286 | | -@@ browser_protocol.pdl:8412 @@ domain Page |
13287 | | - EmbedderTriggeredAndSameOriginRedirected |
13288 | | - EmbedderTriggeredAndCrossOriginRedirected |
13289 | | - EmbedderTriggeredAndDestroyed |
13290 | | -+ MemoryLimitExceeded |
13291 | | -+ # Prerenders can be cancelled when Chrome uses excessive memory. This is |
13292 | | -+ # recorded when it fails to get the memory usage. |
13293 | | -+ FailToGetMemoryUsage |
13294 | | - |
13295 | 13360 | # Fired when a prerender attempt is completed. |
13296 | 13361 | event prerenderAttemptCompleted |
13297 | 13362 | ``` |
0 commit comments