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

Unified Diff: content/browser/service_worker/service_worker_cache.cc

Issue 442383002: Move storage-related files from webkit/ to new top-level directory storage/ (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . 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.cc
diff --git a/content/browser/service_worker/service_worker_cache.cc b/content/browser/service_worker/service_worker_cache.cc
index d5028f00854f1f2d1241105442ee5f1ec94bb289..b2dd16a8d1d136dac23d010667a5e76cbf976f4e 100644
--- a/content/browser/service_worker/service_worker_cache.cc
+++ b/content/browser/service_worker/service_worker_cache.cc
@@ -8,7 +8,7 @@
#include "base/files/file_path.h"
#include "net/url_request/url_request_context.h"
-#include "webkit/browser/blob/blob_storage_context.h"
+#include "storage/browser/blob/blob_storage_context.h"
namespace content {
@@ -16,7 +16,7 @@ namespace content {
scoped_ptr<ServiceWorkerCache> ServiceWorkerCache::CreateMemoryCache(
const std::string& name,
net::URLRequestContext* request_context,
- base::WeakPtr<webkit_blob::BlobStorageContext> blob_context) {
+ base::WeakPtr<storage::BlobStorageContext> blob_context) {
return make_scoped_ptr(new ServiceWorkerCache(
base::FilePath(), name, request_context, blob_context));
}
@@ -26,7 +26,7 @@ scoped_ptr<ServiceWorkerCache> ServiceWorkerCache::CreatePersistentCache(
const base::FilePath& path,
const std::string& name,
net::URLRequestContext* request_context,
- base::WeakPtr<webkit_blob::BlobStorageContext> blob_context) {
+ base::WeakPtr<storage::BlobStorageContext> blob_context) {
return make_scoped_ptr(
new ServiceWorkerCache(path, name, request_context, blob_context));
}
@@ -44,7 +44,7 @@ ServiceWorkerCache::ServiceWorkerCache(
const base::FilePath& path,
const std::string& name,
net::URLRequestContext* request_context,
- base::WeakPtr<webkit_blob::BlobStorageContext> blob_context)
+ base::WeakPtr<storage::BlobStorageContext> blob_context)
: path_(path),
name_(name),
request_context_(request_context),
« no previous file with comments | « content/browser/service_worker/service_worker_cache.h ('k') | content/browser/service_worker/service_worker_cache_storage.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698