Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1260)

Unified Diff: content/browser/service_worker/service_worker_cache_storage_manager.h

Issue 459003002: Plumbs URLRequestContext and CacheBlobStorageContext down to cache. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@cache1
Patch Set: nits Created 6 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: content/browser/service_worker/service_worker_cache_storage_manager.h
diff --git a/content/browser/service_worker/service_worker_cache_storage_manager.h b/content/browser/service_worker/service_worker_cache_storage_manager.h
index d70f08f221067a6c1ff36c9de4f764ef723a4e51..ff5028c7b96dfffbd0ad906ce5deada4bda5abd1 100644
--- a/content/browser/service_worker/service_worker_cache_storage_manager.h
+++ b/content/browser/service_worker/service_worker_cache_storage_manager.h
@@ -16,7 +16,15 @@
namespace base {
class SequencedTaskRunner;
-} // namespace base
+}
+
+namespace net {
+class URLRequestContext;
+}
+
+namespace webkit_blob {
+class BlobStorageContext;
+}
namespace content {
@@ -58,10 +66,11 @@ class CONTENT_EXPORT ServiceWorkerCacheStorageManager {
const ServiceWorkerCacheStorage::StringsAndErrorCallback& callback);
// TODO(jkarlin): Add match() function.
- base::FilePath root_path() const { return root_path_; }
- scoped_refptr<base::SequencedTaskRunner> cache_task_runner() const {
- return cache_task_runner_;
- }
+ // This must be called before creating any of the public *Cache functions
+ // above.
+ void SetBlobParametersForCache(
+ net::URLRequestContext* request_context,
+ base::WeakPtr<webkit_blob::BlobStorageContext> blob_storage_context);
private:
typedef std::map<GURL, ServiceWorkerCacheStorage*>
@@ -76,6 +85,17 @@ class CONTENT_EXPORT ServiceWorkerCacheStorageManager {
ServiceWorkerCacheStorage* FindOrCreateServiceWorkerCacheManager(
const GURL& origin);
+ net::URLRequestContext* url_request_context() const {
+ return request_context_;
+ }
+ base::WeakPtr<webkit_blob::BlobStorageContext> blob_storage_context() const {
+ return blob_context_;
+ }
+ base::FilePath root_path() const { return root_path_; }
+ scoped_refptr<base::SequencedTaskRunner> cache_task_runner() const {
+ return cache_task_runner_;
+ }
+
base::FilePath root_path_;
scoped_refptr<base::SequencedTaskRunner> cache_task_runner_;
@@ -83,6 +103,9 @@ class CONTENT_EXPORT ServiceWorkerCacheStorageManager {
// |cache_task_runner_|.
ServiceWorkerCacheStorageMap cache_storage_map_;
+ net::URLRequestContext* request_context_;
+ base::WeakPtr<webkit_blob::BlobStorageContext> blob_context_;
+
DISALLOW_COPY_AND_ASSIGN(ServiceWorkerCacheStorageManager);
};

Powered by Google App Engine
This is Rietveld 408576698