Chromium Code Reviews| Index: webkit/database/vfs_backend.cc |
| diff --git a/webkit/database/vfs_backend.cc b/webkit/database/vfs_backend.cc |
| index b3879cef47b8f88a4a237dc3de6d6af79e0b481c..09c50d99e7c764087c1aa40618fb587877be606d 100644 |
| --- a/webkit/database/vfs_backend.cc |
| +++ b/webkit/database/vfs_backend.cc |
| @@ -103,6 +103,10 @@ void VfsBackend::OpenFile(const FilePath& file_path, |
| base::PLATFORM_FILE_DELETE_ON_CLOSE; |
| } |
| + // This flag will allow us to delete the file later on from the browser |
| + // process. |
| + //flags |= base::PLATFORM_FILE_SHARE_DELETE; |
|
Miranda Callahan
2011/06/22 16:40:54
Should this be removed?
|
| + |
| // Try to open/create the DB file. |
| *file_handle = |
| base::CreatePlatformFile(file_path, flags, NULL, NULL); |