| 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 5ab32d70201321977bc58265085675a191e79dfb..3dae44e3dc2bf78836481a72ce911dbf59172b63 100644
|
| --- a/webkit/tools/test_shell/simple_file_system.cc
|
| +++ b/webkit/tools/test_shell/simple_file_system.cc
|
| @@ -99,9 +99,12 @@ void SimpleFileSystem::OpenFileSystem(
|
| return;
|
| }
|
|
|
| + fileapi::OpenFileSystemMode mode =
|
| + create ? fileapi::OPEN_FILE_SYSTEM_CREATE_IF_NONEXISTENT
|
| + : fileapi::OPEN_FILE_SYSTEM_FAIL_IF_NONEXISTENT;
|
| GURL origin_url(frame->document().securityOrigin().toString());
|
| file_system_context_->OpenFileSystem(
|
| - origin_url, static_cast<fileapi::FileSystemType>(type), create,
|
| + origin_url, static_cast<fileapi::FileSystemType>(type), mode,
|
| OpenFileSystemHandler(callbacks));
|
| }
|
|
|
|
|