Index: content/browser/service_worker/service_worker_version.h |
diff --git a/content/browser/service_worker/service_worker_version.h b/content/browser/service_worker/service_worker_version.h |
index cd047c2f4eab429cbb30c7aadd357952200999f9..c73ef597273c0907ba2eb6d3686f33826849a2df 100644 |
--- a/content/browser/service_worker/service_worker_version.h |
+++ b/content/browser/service_worker/service_worker_version.h |
@@ -378,8 +378,11 @@ class CONTENT_EXPORT ServiceWorkerVersion |
const StatusCallback& callback); |
// Message handlers. |
+ |
+ // This corresponds to the spec's matchAll(options) steps. |
void OnGetClients(int request_id, |
const ServiceWorkerClientQueryOptions& options); |
+ |
void OnActivateEventFinished(int request_id, |
blink::WebServiceWorkerEventResult result); |
void OnInstallEventFinished(int request_id, |
@@ -437,6 +440,8 @@ class CONTENT_EXPORT ServiceWorkerVersion |
void GetNonWindowClients(int request_id, |
const ServiceWorkerClientQueryOptions& options, |
ServiceWorkerClients* clients); |
+ void OnGetClientsFinished(int request_id, |
+ const ServiceWorkerClients& clients); |
// The timeout timer periodically calls OnTimeoutTimer, which stops the worker |
// if it is excessively idle or unresponsive to ping. |