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

Unified Diff: webkit/tools/test_shell/simple_file_system.cc

Issue 14096022: Make MountPointProvider pluggable from outside webkit/fileapi (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 8 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
Index: webkit/tools/test_shell/simple_file_system.cc
diff --git a/webkit/tools/test_shell/simple_file_system.cc b/webkit/tools/test_shell/simple_file_system.cc
index b2b509d4978d1b3bede9b65d283adf37af2a47d8..d9dc329780ac86388cc8473c0086652fb5a3795b 100644
--- a/webkit/tools/test_shell/simple_file_system.cc
+++ b/webkit/tools/test_shell/simple_file_system.cc
@@ -80,9 +80,9 @@ SimpleFileSystem::SimpleFileSystem() {
if (file_system_dir_.CreateUniqueTempDir()) {
file_system_context_ = new FileSystemContext(
FileSystemTaskRunners::CreateMockTaskRunners(),
- fileapi::ExternalMountPoints::CreateRefCounted().get(),
- NULL /* special storage policy */,
NULL /* quota manager */,
+ ScopedVector<fileapi::FileSystemMountPointProvider>(),
+ std::vector<fileapi::MountPoints*>(),
file_system_dir_.path(),
fileapi::CreateAllowFileAccessOptions());
} else {

Powered by Google App Engine
This is Rietveld 408576698