| Index: content/browser/storage_partition_impl.h
|
| diff --git a/content/browser/storage_partition_impl.h b/content/browser/storage_partition_impl.h
|
| index a63fed9b4ec3e1523601784da8e9b2296b186028..4652953a25b43876f67d8c516c7f76ed4f88aa42 100644
|
| --- a/content/browser/storage_partition_impl.h
|
| +++ b/content/browser/storage_partition_impl.h
|
| @@ -15,7 +15,7 @@
|
| #include "content/browser/service_worker/service_worker_context_wrapper.h"
|
| #include "content/common/content_export.h"
|
| #include "content/public/browser/storage_partition.h"
|
| -#include "webkit/browser/quota/special_storage_policy.h"
|
| +#include "storage/browser/quota/special_storage_policy.h"
|
|
|
| namespace content {
|
|
|
| @@ -38,7 +38,7 @@ class StoragePartitionImpl : public StoragePartition {
|
| virtual net::URLRequestContextGetter* GetMediaURLRequestContext() OVERRIDE;
|
| virtual quota::QuotaManager* GetQuotaManager() OVERRIDE;
|
| virtual ChromeAppCacheService* GetAppCacheService() OVERRIDE;
|
| - virtual fileapi::FileSystemContext* GetFileSystemContext() OVERRIDE;
|
| + virtual storage::FileSystemContext* GetFileSystemContext() OVERRIDE;
|
| virtual webkit_database::DatabaseTracker* GetDatabaseTracker() OVERRIDE;
|
| virtual DOMStorageContextWrapper* GetDOMStorageContext() OVERRIDE;
|
| virtual IndexedDBContextImpl* GetIndexedDBContext() OVERRIDE;
|
| @@ -111,7 +111,7 @@ class StoragePartitionImpl : public StoragePartition {
|
| const base::FilePath& partition_path,
|
| quota::QuotaManager* quota_manager,
|
| ChromeAppCacheService* appcache_service,
|
| - fileapi::FileSystemContext* filesystem_context,
|
| + storage::FileSystemContext* filesystem_context,
|
| webkit_database::DatabaseTracker* database_tracker,
|
| DOMStorageContextWrapper* dom_storage_context,
|
| IndexedDBContextImpl* indexed_db_context,
|
| @@ -150,7 +150,7 @@ class StoragePartitionImpl : public StoragePartition {
|
| scoped_refptr<net::URLRequestContextGetter> media_url_request_context_;
|
| scoped_refptr<quota::QuotaManager> quota_manager_;
|
| scoped_refptr<ChromeAppCacheService> appcache_service_;
|
| - scoped_refptr<fileapi::FileSystemContext> filesystem_context_;
|
| + scoped_refptr<storage::FileSystemContext> filesystem_context_;
|
| scoped_refptr<webkit_database::DatabaseTracker> database_tracker_;
|
| scoped_refptr<DOMStorageContextWrapper> dom_storage_context_;
|
| scoped_refptr<IndexedDBContextImpl> indexed_db_context_;
|
|
|