Skip to content

Commit 882733c

Browse files
authored
Add patch for ed/idl/shared-storage.idl (#1630)
Convert `async iterable` to `async_iterable`
1 parent 70cbab5 commit 882733c

File tree

1 file changed

+15
-17
lines changed

1 file changed

+15
-17
lines changed
Lines changed: 15 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,26 @@
1-
From 0e9b836f6073e971dac39fd0c24bf3f47306216c Mon Sep 17 00:00:00 2001
1+
From 1b5252d6e101f6889f4b80de5bcc173c770f6385 Mon Sep 17 00:00:00 2001
22
From: Francois Daoust <[email protected]>
3-
Date: Mon, 16 Dec 2024 15:16:50 +0100
4-
Subject: [PATCH] Drop monkey patches of Web Locks
3+
Date: Mon, 28 Jul 2025 08:41:35 +0200
4+
Subject: [PATCH] Convert `async iterable` to `async_iterable`
55

6-
Pending integration in Web Locks. No specific issue but patch will fail
7-
once done.
6+
Pending https://github.com/WICG/shared-storage/pull/237
87
---
9-
ed/idl/shared-storage.idl | 6 ------
10-
1 file changed, 6 deletions(-)
8+
ed/idl/shared-storage.idl | 2 +-
9+
1 file changed, 1 insertion(+), 1 deletion(-)
1110

1211
diff --git a/ed/idl/shared-storage.idl b/ed/idl/shared-storage.idl
13-
index 353292fa8..b6863eff8 100644
12+
index 0ea5fbefc2..d68cea4089 100644
1413
--- a/ed/idl/shared-storage.idl
1514
+++ b/ed/idl/shared-storage.idl
16-
@@ -114,9 +114,3 @@ partial dictionary RequestInit {
17-
] interface SharedStorageWorkletNavigator {};
15+
@@ -105,7 +105,7 @@ interface SharedStorage {
16+
Promise<double> remainingBudget();
1817

19-
SharedStorageWorkletNavigator includes NavigatorLocks;
20-
-
21-
-[SecureContext, Exposed=(Window,Worker,SharedStorageWorklet)]
22-
-interface LockManager {};
23-
-
24-
-[SecureContext, Exposed=(Window,Worker,SharedStorageWorklet)]
25-
-interface Lock {};
18+
[Exposed=SharedStorageWorklet]
19+
- async iterable<DOMString, DOMString>;
20+
+ async_iterable<DOMString, DOMString>;
21+
};
22+
23+
dictionary SharedStoragePrivateAggregationConfig {
2624
--
2725
2.37.1.windows.1
2826

0 commit comments

Comments
 (0)