| 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..f3d69f1998a6f4a00dbf1537347e7c5fecdf99cd 100644
|
| --- a/webkit/browser/fileapi/mock_file_system_context.cc
|
| +++ b/webkit/browser/fileapi/mock_file_system_context.cc
|
| @@ -6,8 +6,8 @@
|
|
|
| #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"
|
| @@ -18,7 +18,7 @@ namespace fileapi {
|
| FileSystemContext* CreateFileSystemContextForTesting(
|
| quota::QuotaManagerProxy* quota_manager_proxy,
|
| const base::FilePath& base_path) {
|
| - ScopedVector<FileSystemMountPointProvider> additional_providers;
|
| + ScopedVector<FileSystemBackend> additional_providers;
|
| additional_providers.push_back(new TestMountPointProvider(
|
| base::MessageLoopProxy::current().get(), base_path));
|
| return CreateFileSystemContextWithAdditionalProvidersForTesting(
|
| @@ -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(),
|
|
|