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

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

Issue 2618393003: Remove ScopedVector from ContentBrowserClient. (Closed)
Patch Set: rebase Created 3 years, 11 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/browser/content_browser_client.cc ('k') | content/public/test/test_file_system_context.cc » ('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.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);
« no previous file with comments | « content/public/browser/content_browser_client.cc ('k') | content/public/test/test_file_system_context.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698