| Index: content/browser/cache_storage/cache_storage.h
|
| diff --git a/content/browser/cache_storage/cache_storage.h b/content/browser/cache_storage/cache_storage.h
|
| index 261eebd134c62dafbb56747ae624aa49ee4584f4..6ec3e238dd05bfe52c16906b4fb3a5833b5a5476 100644
|
| --- a/content/browser/cache_storage/cache_storage.h
|
| +++ b/content/browser/cache_storage/cache_storage.h
|
| @@ -10,6 +10,7 @@
|
|
|
| #include "base/callback.h"
|
| #include "base/files/file_path.h"
|
| +#include "base/memory/ref_counted.h"
|
| #include "base/memory/weak_ptr.h"
|
| #include "content/browser/cache_storage/cache_storage_cache.h"
|
|
|
| @@ -18,7 +19,7 @@ class SequencedTaskRunner;
|
| }
|
|
|
| namespace net {
|
| -class URLRequestContext;
|
| +class URLRequestContextGetter;
|
| }
|
|
|
| namespace storage {
|
| @@ -48,7 +49,7 @@ class CONTENT_EXPORT CacheStorage {
|
| const base::FilePath& origin_path,
|
| bool memory_only,
|
| base::SequencedTaskRunner* cache_task_runner,
|
| - net::URLRequestContext* request_context,
|
| + const scoped_refptr<net::URLRequestContextGetter>& request_context_getter,
|
| const scoped_refptr<storage::QuotaManagerProxy>& quota_manager_proxy,
|
| base::WeakPtr<storage::BlobStorageContext> blob_context,
|
| const GURL& origin);
|
|
|