| 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_;
|
|
|