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

Unified Diff: Source/web/ServiceWorkerGlobalScopeClientImpl.cpp

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/web/ServiceWorkerGlobalScopeClientImpl.cpp
diff --git a/Source/web/ServiceWorkerGlobalScopeClientImpl.cpp b/Source/web/ServiceWorkerGlobalScopeClientImpl.cpp
index 58030a0297b325cc692db158639d4ea92f9afd56..36cdb4fca9977ccec42ac25c86dc0d84de39b2fc 100644
--- a/Source/web/ServiceWorkerGlobalScopeClientImpl.cpp
+++ b/Source/web/ServiceWorkerGlobalScopeClientImpl.cpp
@@ -53,6 +53,11 @@ void ServiceWorkerGlobalScopeClientImpl::getClients(WebServiceWorkerClientsCallb
m_client.getClients(callbacks);
}
+void ServiceWorkerGlobalScopeClientImpl::openWindow(const WebURL& url, WebServiceWorkerClientCallbacks* callbacks)
+{
+ m_client.openWindow(url, callbacks);
+}
+
WebURL ServiceWorkerGlobalScopeClientImpl::scope() const
{
return m_client.scope();

Powered by Google App Engine
This is Rietveld 408576698