| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "content/browser/service_worker/service_worker_cache.h" | 5 #include "content/browser/service_worker/service_worker_cache.h" |
| 6 | 6 |
| 7 #include <string> | 7 #include <string> |
| 8 | 8 |
| 9 #include "base/files/file_path.h" | 9 #include "base/files/file_path.h" |
| 10 #include "net/url_request/url_request_context.h" | 10 #include "net/url_request/url_request_context.h" |
| 11 #include "webkit/browser/blob/blob_storage_context.h" | 11 #include "webkit/browser/blob/blob_storage_context.h" |
| 12 | 12 |
| 13 namespace content { | 13 namespace content { |
| 14 | 14 |
| 15 // static | 15 // static |
| 16 scoped_ptr<ServiceWorkerCache> ServiceWorkerCache::CreateMemoryCache( | 16 scoped_ptr<ServiceWorkerCache> ServiceWorkerCache::CreateMemoryCache( |
| 17 const std::string& name, | 17 const std::string& name, |
| 18 net::URLRequestContext* request_context, | 18 net::URLRequestContext* request_context, |
| 19 base::WeakPtr<webkit_blob::BlobStorageContext> blob_context) { | 19 base::WeakPtr<storage::BlobStorageContext> blob_context) { |
| 20 return make_scoped_ptr(new ServiceWorkerCache( | 20 return make_scoped_ptr(new ServiceWorkerCache( |
| 21 base::FilePath(), name, request_context, blob_context)); | 21 base::FilePath(), name, request_context, blob_context)); |
| 22 } | 22 } |
| 23 | 23 |
| 24 // static | 24 // static |
| 25 scoped_ptr<ServiceWorkerCache> ServiceWorkerCache::CreatePersistentCache( | 25 scoped_ptr<ServiceWorkerCache> ServiceWorkerCache::CreatePersistentCache( |
| 26 const base::FilePath& path, | 26 const base::FilePath& path, |
| 27 const std::string& name, | 27 const std::string& name, |
| 28 net::URLRequestContext* request_context, | 28 net::URLRequestContext* request_context, |
| 29 base::WeakPtr<webkit_blob::BlobStorageContext> blob_context) { | 29 base::WeakPtr<storage::BlobStorageContext> blob_context) { |
| 30 return make_scoped_ptr( | 30 return make_scoped_ptr( |
| 31 new ServiceWorkerCache(path, name, request_context, blob_context)); | 31 new ServiceWorkerCache(path, name, request_context, blob_context)); |
| 32 } | 32 } |
| 33 | 33 |
| 34 void ServiceWorkerCache::CreateBackend( | 34 void ServiceWorkerCache::CreateBackend( |
| 35 const base::Callback<void(bool)>& callback) { | 35 const base::Callback<void(bool)>& callback) { |
| 36 callback.Run(true); | 36 callback.Run(true); |
| 37 } | 37 } |
| 38 | 38 |
| 39 base::WeakPtr<ServiceWorkerCache> ServiceWorkerCache::AsWeakPtr() { | 39 base::WeakPtr<ServiceWorkerCache> ServiceWorkerCache::AsWeakPtr() { |
| 40 return weak_ptr_factory_.GetWeakPtr(); | 40 return weak_ptr_factory_.GetWeakPtr(); |
| 41 } | 41 } |
| 42 | 42 |
| 43 ServiceWorkerCache::ServiceWorkerCache( | 43 ServiceWorkerCache::ServiceWorkerCache( |
| 44 const base::FilePath& path, | 44 const base::FilePath& path, |
| 45 const std::string& name, | 45 const std::string& name, |
| 46 net::URLRequestContext* request_context, | 46 net::URLRequestContext* request_context, |
| 47 base::WeakPtr<webkit_blob::BlobStorageContext> blob_context) | 47 base::WeakPtr<storage::BlobStorageContext> blob_context) |
| 48 : path_(path), | 48 : path_(path), |
| 49 name_(name), | 49 name_(name), |
| 50 request_context_(request_context), | 50 request_context_(request_context), |
| 51 blob_storage_context_(blob_context), | 51 blob_storage_context_(blob_context), |
| 52 id_(0), | 52 id_(0), |
| 53 weak_ptr_factory_(this) { | 53 weak_ptr_factory_(this) { |
| 54 } | 54 } |
| 55 | 55 |
| 56 ServiceWorkerCache::~ServiceWorkerCache() { | 56 ServiceWorkerCache::~ServiceWorkerCache() { |
| 57 } | 57 } |
| 58 | 58 |
| 59 } // namespace content | 59 } // namespace content |
| OLD | NEW |