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

Unified Diff: content/public/test/test_file_system_context.cc

Issue 492873002: Collapse fileapi, webkit_blob, webkit_database, quota, and webkit_common namespaces into single sto… (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix chromeos build 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
« no previous file with comments | « content/public/test/test_file_system_context.h ('k') | content/public/test/test_file_system_options.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/public/test/test_file_system_context.cc
diff --git a/content/public/test/test_file_system_context.cc b/content/public/test/test_file_system_context.cc
index f577af40d50fd95f8e5750cbf3d1c6aebd3f51c7..855ea0f50ccd9866523e49f96b9d515b8d8ce1fe 100644
--- a/content/public/test/test_file_system_context.cc
+++ b/content/public/test/test_file_system_context.cc
@@ -14,43 +14,42 @@
namespace content {
-fileapi::FileSystemContext* CreateFileSystemContextForTesting(
- quota::QuotaManagerProxy* quota_manager_proxy,
+storage::FileSystemContext* CreateFileSystemContextForTesting(
+ storage::QuotaManagerProxy* quota_manager_proxy,
const base::FilePath& base_path) {
- ScopedVector<fileapi::FileSystemBackend> additional_providers;
+ ScopedVector<storage::FileSystemBackend> additional_providers;
additional_providers.push_back(new TestFileSystemBackend(
base::MessageLoopProxy::current().get(), base_path));
return CreateFileSystemContextWithAdditionalProvidersForTesting(
quota_manager_proxy, additional_providers.Pass(), base_path);
}
-fileapi::FileSystemContext*
+storage::FileSystemContext*
CreateFileSystemContextWithAdditionalProvidersForTesting(
- quota::QuotaManagerProxy* quota_manager_proxy,
- ScopedVector<fileapi::FileSystemBackend> additional_providers,
+ storage::QuotaManagerProxy* quota_manager_proxy,
+ ScopedVector<storage::FileSystemBackend> additional_providers,
const base::FilePath& base_path) {
- return new fileapi::FileSystemContext(
+ return new storage::FileSystemContext(
base::MessageLoopProxy::current().get(),
base::MessageLoopProxy::current().get(),
- fileapi::ExternalMountPoints::CreateRefCounted().get(),
+ storage::ExternalMountPoints::CreateRefCounted().get(),
make_scoped_refptr(new MockSpecialStoragePolicy()).get(),
quota_manager_proxy,
additional_providers.Pass(),
- std::vector<fileapi::URLRequestAutoMountHandler>(),
+ std::vector<storage::URLRequestAutoMountHandler>(),
base_path,
CreateAllowFileAccessOptions());
}
-fileapi::FileSystemContext*
-CreateFileSystemContextWithAutoMountersForTesting(
- quota::QuotaManagerProxy* quota_manager_proxy,
- ScopedVector<fileapi::FileSystemBackend> additional_providers,
- const std::vector<fileapi::URLRequestAutoMountHandler>& auto_mounters,
+storage::FileSystemContext* CreateFileSystemContextWithAutoMountersForTesting(
+ storage::QuotaManagerProxy* quota_manager_proxy,
+ ScopedVector<storage::FileSystemBackend> additional_providers,
+ const std::vector<storage::URLRequestAutoMountHandler>& auto_mounters,
const base::FilePath& base_path) {
- return new fileapi::FileSystemContext(
+ return new storage::FileSystemContext(
base::MessageLoopProxy::current().get(),
base::MessageLoopProxy::current().get(),
- fileapi::ExternalMountPoints::CreateRefCounted().get(),
+ storage::ExternalMountPoints::CreateRefCounted().get(),
make_scoped_refptr(new MockSpecialStoragePolicy()).get(),
quota_manager_proxy,
additional_providers.Pass(),
@@ -59,18 +58,18 @@ CreateFileSystemContextWithAutoMountersForTesting(
CreateAllowFileAccessOptions());
}
-fileapi::FileSystemContext* CreateIncognitoFileSystemContextForTesting(
- quota::QuotaManagerProxy* quota_manager_proxy,
+storage::FileSystemContext* CreateIncognitoFileSystemContextForTesting(
+ storage::QuotaManagerProxy* quota_manager_proxy,
const base::FilePath& base_path) {
- ScopedVector<fileapi::FileSystemBackend> additional_providers;
- return new fileapi::FileSystemContext(
+ ScopedVector<storage::FileSystemBackend> additional_providers;
+ return new storage::FileSystemContext(
base::MessageLoopProxy::current().get(),
base::MessageLoopProxy::current().get(),
- fileapi::ExternalMountPoints::CreateRefCounted().get(),
+ storage::ExternalMountPoints::CreateRefCounted().get(),
make_scoped_refptr(new MockSpecialStoragePolicy()).get(),
quota_manager_proxy,
additional_providers.Pass(),
- std::vector<fileapi::URLRequestAutoMountHandler>(),
+ std::vector<storage::URLRequestAutoMountHandler>(),
base_path,
CreateIncognitoFileSystemOptions());
}
« no previous file with comments | « content/public/test/test_file_system_context.h ('k') | content/public/test/test_file_system_options.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698