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

Unified Diff: Source/modules/serviceworkers/ServiceWorkerGlobalScopeClient.h

Issue 958933004: ServiceWorker: plumbing for ClientQueryOptions (1/2, blink) (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 10 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/ServiceWorkerGlobalScopeClient.h
diff --git a/Source/modules/serviceworkers/ServiceWorkerGlobalScopeClient.h b/Source/modules/serviceworkers/ServiceWorkerGlobalScopeClient.h
index 680e89505633e4c4c1b04c2849cc5b478db17d1e..ddff85e814fbb5705f3f2fd24a83b6639eb3620e 100644
--- a/Source/modules/serviceworkers/ServiceWorkerGlobalScopeClient.h
+++ b/Source/modules/serviceworkers/ServiceWorkerGlobalScopeClient.h
@@ -43,8 +43,9 @@
namespace blink {
-class ExecutionContext;
struct WebCrossOriginServiceWorkerClient;
+struct WebServiceWorkerClientQueryOptions;
+class ExecutionContext;
class WebServiceWorkerCacheStorage;
class WebServiceWorkerResponse;
class WebURL;
@@ -57,7 +58,7 @@ public:
virtual ~ServiceWorkerGlobalScopeClient() { }
// Called from ServiceWorkerClients.
- virtual void getClients(WebServiceWorkerClientsCallbacks*) = 0;
+ virtual void getClients(const WebServiceWorkerClientQueryOptions&, WebServiceWorkerClientsCallbacks*) = 0;
virtual void openWindow(const WebURL&, WebServiceWorkerClientCallbacks*) = 0;
virtual void setCachedMetadata(const WebURL&, const char*, size_t) = 0;
virtual void clearCachedMetadata(const WebURL&) = 0;
« no previous file with comments | « Source/modules/serviceworkers/ServiceWorkerClients.cpp ('k') | Source/web/ServiceWorkerGlobalScopeClientImpl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698