| Index: content/browser/service_worker/service_worker_cache_storage.h
|
| diff --git a/content/browser/service_worker/service_worker_cache_storage.h b/content/browser/service_worker/service_worker_cache_storage.h
|
| index 79d531564ba687d322a65f8457c2dd3272f095d2..0301ffd17aaebe333670cbd3bd0ee77e700d99af 100644
|
| --- a/content/browser/service_worker/service_worker_cache_storage.h
|
| +++ b/content/browser/service_worker/service_worker_cache_storage.h
|
| @@ -17,7 +17,12 @@ namespace base {
|
| class SequencedTaskRunner;
|
| }
|
|
|
| +namespace net {
|
| +class URLRequestContext;
|
| +}
|
| +
|
| namespace content {
|
| +class ChromeBlobStorageContext;
|
| class ServiceWorkerCache;
|
|
|
| // TODO(jkarlin): Constrain the total bytes used per origin.
|
| @@ -43,7 +48,9 @@ class ServiceWorkerCacheStorage {
|
|
|
| ServiceWorkerCacheStorage(const base::FilePath& origin_path,
|
| bool memory_only,
|
| - base::SequencedTaskRunner* cache_task_runner);
|
| + base::SequencedTaskRunner* cache_task_runner,
|
| + net::URLRequestContext* request_context,
|
| + ChromeBlobStorageContext* blob_context);
|
|
|
| virtual ~ServiceWorkerCacheStorage();
|
|
|
|
|