Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(148)

Unified Diff: Source/modules/serviceworkers/Clients.idl

Issue 850413002: [ServiceWorker] Implement ServiceWorkerClients.openWindow(). (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@sw_client_info_cb
Patch Set: Created 5 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: Source/modules/serviceworkers/Clients.idl
diff --git a/Source/modules/serviceworkers/Clients.idl b/Source/modules/serviceworkers/Clients.idl
index e8f678f1ebc0b34ee32ab8397d570ca007a2acd9..4cfa39c9f448a30171b7ef57bc0c5545f88d2bf8 100644
--- a/Source/modules/serviceworkers/Clients.idl
+++ b/Source/modules/serviceworkers/Clients.idl
@@ -11,4 +11,5 @@
ImplementedAs=ServiceWorkerClients,
] interface Clients {
[CallWith=ScriptState] Promise<sequence<Client>?> getAll(optional ClientQueryOptions options);
+ [RuntimeEnabled=ServiceWorkerClientAttributes, CallWith=ScriptState] Promise<WindowClient?> openWindow(USVString url);
};

Powered by Google App Engine
This is Rietveld 408576698