Index: webkit/browser/fileapi/mock_file_system_context.cc |
diff --git a/webkit/browser/fileapi/mock_file_system_context.cc b/webkit/browser/fileapi/mock_file_system_context.cc |
index 70ddbccf6feb1040e142cc94f461a80dcdd247fd..329e1a392903e26f331fd9d603234e3f44e53e70 100644 |
--- a/webkit/browser/fileapi/mock_file_system_context.cc |
+++ b/webkit/browser/fileapi/mock_file_system_context.cc |
@@ -6,11 +6,11 @@ |
#include "base/memory/scoped_vector.h" |
#include "webkit/browser/fileapi/external_mount_points.h" |
+#include "webkit/browser/fileapi/file_system_backend.h" |
#include "webkit/browser/fileapi/file_system_context.h" |
-#include "webkit/browser/fileapi/file_system_mount_point_provider.h" |
#include "webkit/browser/fileapi/file_system_task_runners.h" |
#include "webkit/browser/fileapi/mock_file_system_options.h" |
-#include "webkit/browser/fileapi/test_mount_point_provider.h" |
+#include "webkit/browser/fileapi/test_file_system_backend.h" |
#include "webkit/browser/quota/mock_special_storage_policy.h" |
namespace fileapi { |
@@ -18,8 +18,8 @@ namespace fileapi { |
FileSystemContext* CreateFileSystemContextForTesting( |
quota::QuotaManagerProxy* quota_manager_proxy, |
const base::FilePath& base_path) { |
- ScopedVector<FileSystemMountPointProvider> additional_providers; |
- additional_providers.push_back(new TestMountPointProvider( |
+ ScopedVector<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); |
@@ -27,7 +27,7 @@ FileSystemContext* CreateFileSystemContextForTesting( |
FileSystemContext* CreateFileSystemContextWithAdditionalProvidersForTesting( |
quota::QuotaManagerProxy* quota_manager_proxy, |
- ScopedVector<FileSystemMountPointProvider> additional_providers, |
+ ScopedVector<FileSystemBackend> additional_providers, |
const base::FilePath& base_path) { |
return new FileSystemContext( |
FileSystemTaskRunners::CreateMockTaskRunners(), |