Index: content/browser/service_worker/service_worker_cache_listener.h |
diff --git a/content/browser/service_worker/service_worker_cache_listener.h b/content/browser/service_worker/service_worker_cache_listener.h |
index a4dbf662e882fc5e98c2f72d9826c89755e61282..d0364f36d94f46eae590880bbf9ea275dc4c7f8c 100644 |
--- a/content/browser/service_worker/service_worker_cache_listener.h |
+++ b/content/browser/service_worker/service_worker_cache_listener.h |
@@ -100,15 +100,19 @@ class ServiceWorkerCacheListener : public EmbeddedWorkerInstance::Listener { |
// Cache callbacks |
void OnCacheMatchCallback( |
int request_id, |
+ const scoped_refptr<ServiceWorkerCache>& cache, |
ServiceWorkerCache::ErrorType error, |
scoped_ptr<ServiceWorkerResponse> response, |
scoped_ptr<storage::BlobDataHandle> blob_data_handle); |
void OnCacheKeysCallback(int request_id, |
+ const scoped_refptr<ServiceWorkerCache>& cache, |
ServiceWorkerCache::ErrorType error, |
scoped_ptr<ServiceWorkerCache::Requests> requests); |
void OnCacheDeleteCallback(int request_id, |
+ const scoped_refptr<ServiceWorkerCache>& cache, |
ServiceWorkerCache::ErrorType error); |
void OnCachePutCallback(int request_id, |
+ const scoped_refptr<ServiceWorkerCache>& cache, |
ServiceWorkerCache::ErrorType error, |
scoped_ptr<ServiceWorkerResponse> response, |
scoped_ptr<storage::BlobDataHandle> blob_data_handle); |