Index: Source/modules/serviceworkers/Clients.idl |
diff --git a/Source/modules/serviceworkers/Clients.idl b/Source/modules/serviceworkers/Clients.idl |
index 1e8ae003c83907d0d0c2243f322e6b60aa55f229..d7b7c80401d4f2252811c7a10f3b4294ddabfa7c 100644 |
--- a/Source/modules/serviceworkers/Clients.idl |
+++ b/Source/modules/serviceworkers/Clients.idl |
@@ -10,7 +10,10 @@ |
TypeChecking=Interface, |
ImplementedAs=ServiceWorkerClients, |
] interface Clients { |
- [CallWith=ScriptState] Promise<sequence<Client>?> getAll(optional ClientQueryOptions options); |
+ // DEPRECATED |
+ [DeprecateAs=ServiceWorkerClientsGetAll, CallWith=ScriptState] Promise<sequence<Client>?> getAll(optional ClientQueryOptions options); |
+ |
+ [CallWith=ScriptState] Promise<sequence<Client>?> matchAll(optional ClientQueryOptions options); |
[RuntimeEnabled=ServiceWorkerClientAttributes, CallWith=ScriptState] Promise<WindowClient?> openWindow(USVString url); |
[CallWith=ScriptState] Promise<void> claim(); |
}; |