Index: content/browser/service_worker/service_worker_storage.h |
diff --git a/content/browser/service_worker/service_worker_storage.h b/content/browser/service_worker/service_worker_storage.h |
index a0183dbf131f1870f4ebd6b775bc0ccb3224907c..d815bf8cdf6b298498b343c6eb980f18fe3d8f8b 100644 |
--- a/content/browser/service_worker/service_worker_storage.h |
+++ b/content/browser/service_worker/service_worker_storage.h |
@@ -151,8 +151,8 @@ class CONTENT_EXPORT ServiceWorkerStorage { |
ServiceWorkerDatabase::Status status); |
void DidReadRegistrationForId( |
const FindRegistrationCallback& callback, |
- const ServiceWorkerDatabase::RegistrationData& registration, |
- const ResourceList& resources, |
+ ServiceWorkerDatabase::RegistrationData* registration, |
+ ResourceList* resources, |
ServiceWorkerDatabase::Status status); |
void DidGetAllRegistrations( |
const GetAllRegistrationInfosCallback& callback, |
@@ -161,7 +161,10 @@ class CONTENT_EXPORT ServiceWorkerStorage { |
void DidStoreRegistration( |
const GURL& origin, |
const StatusCallback& callback, |
- bool success); |
+ ServiceWorkerDatabase::Status status); |
+ void DidUpdateToActiveState( |
+ const StatusCallback& callback, |
+ ServiceWorkerDatabase::Status status); |
void DidDeleteRegistration( |
const GURL& origin, |
const StatusCallback& callback, |