| Index: content/public/test/test_file_system_context.h
|
| diff --git a/content/public/test/test_file_system_context.h b/content/public/test/test_file_system_context.h
|
| index 4dee9d23c60e8f0ed66d2d697d5169dd1d2be9af..a9c1b5f3e5612c4c0169c426bf00583e8548c2a0 100644
|
| --- a/content/public/test/test_file_system_context.h
|
| +++ b/content/public/test/test_file_system_context.h
|
| @@ -26,14 +26,16 @@ storage::FileSystemContext* CreateFileSystemContextForTesting(
|
| // The caller is responsible for including TestFileSystemBackend in
|
| // |additional_providers| if needed.
|
| storage::FileSystemContext*
|
| - CreateFileSystemContextWithAdditionalProvidersForTesting(
|
| - storage::QuotaManagerProxy* quota_manager_proxy,
|
| - ScopedVector<storage::FileSystemBackend> additional_providers,
|
| - const base::FilePath& base_path);
|
| +CreateFileSystemContextWithAdditionalProvidersForTesting(
|
| + storage::QuotaManagerProxy* quota_manager_proxy,
|
| + std::vector<std::unique_ptr<storage::FileSystemBackend>>
|
| + additional_providers,
|
| + const base::FilePath& base_path);
|
|
|
| storage::FileSystemContext* CreateFileSystemContextWithAutoMountersForTesting(
|
| storage::QuotaManagerProxy* quota_manager_proxy,
|
| - ScopedVector<storage::FileSystemBackend> additional_providers,
|
| + std::vector<std::unique_ptr<storage::FileSystemBackend>>
|
| + additional_providers,
|
| const std::vector<storage::URLRequestAutoMountHandler>& auto_mounters,
|
| const base::FilePath& base_path);
|
|
|
|
|