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

Unified Diff: content/browser/shared_worker/worker_storage_partition.h

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/shared_worker/worker_storage_partition.h
diff --git a/content/browser/shared_worker/worker_storage_partition.h b/content/browser/shared_worker/worker_storage_partition.h
index 0053c4fc00fb007d870a62c90eb1b12535f9da64..f14adb91677bfb3f022a05b1f6e4029448a71b78 100644
--- a/content/browser/shared_worker/worker_storage_partition.h
+++ b/content/browser/shared_worker/worker_storage_partition.h
@@ -12,9 +12,9 @@ namespace quota {
class QuotaManager;
}
-namespace fileapi {
+namespace storage {
class FileSystemContext;
-} // namespace fileapi
+} // namespace storage
namespace net {
class URLRequestContextGetter;
@@ -48,7 +48,7 @@ class CONTENT_EXPORT WorkerStoragePartition {
net::URLRequestContextGetter* media_url_request_context,
ChromeAppCacheService* appcache_service,
quota::QuotaManager* quota_manager,
- fileapi::FileSystemContext* filesystem_context,
+ storage::FileSystemContext* filesystem_context,
webkit_database::DatabaseTracker* database_tracker,
IndexedDBContextImpl* indexed_db_context,
ServiceWorkerContextWrapper* service_worker_context);
@@ -78,7 +78,7 @@ class CONTENT_EXPORT WorkerStoragePartition {
return quota_manager_.get();
}
- fileapi::FileSystemContext* filesystem_context() const {
+ storage::FileSystemContext* filesystem_context() const {
return filesystem_context_.get();
}
@@ -101,7 +101,7 @@ class CONTENT_EXPORT WorkerStoragePartition {
scoped_refptr<net::URLRequestContextGetter> media_url_request_context_;
scoped_refptr<ChromeAppCacheService> appcache_service_;
scoped_refptr<quota::QuotaManager> quota_manager_;
- scoped_refptr<fileapi::FileSystemContext> filesystem_context_;
+ scoped_refptr<storage::FileSystemContext> filesystem_context_;
scoped_refptr<webkit_database::DatabaseTracker> database_tracker_;
scoped_refptr<IndexedDBContextImpl> indexed_db_context_;
scoped_refptr<ServiceWorkerContextWrapper> service_worker_context_;
@@ -123,7 +123,7 @@ class CONTENT_EXPORT WorkerStoragePartitionId {
net::URLRequestContextGetter* media_url_request_context_;
ChromeAppCacheService* appcache_service_;
quota::QuotaManager* quota_manager_;
- fileapi::FileSystemContext* filesystem_context_;
+ storage::FileSystemContext* filesystem_context_;
webkit_database::DatabaseTracker* database_tracker_;
IndexedDBContextImpl* indexed_db_context_;
ServiceWorkerContextWrapper* service_worker_context_;

Powered by Google App Engine
This is Rietveld 408576698