| Index: webkit/tools/test_shell/simple_database_system.cc
|
| ===================================================================
|
| --- webkit/tools/test_shell/simple_database_system.cc (revision 45746)
|
| +++ webkit/tools/test_shell/simple_database_system.cc (working copy)
|
| @@ -192,6 +192,9 @@
|
|
|
| FilePath SimpleDatabaseSystem::GetFullFilePathForVfsFile(
|
| const string16& vfs_file_name) {
|
| + if (vfs_file_name.empty()) // temp file, used for vacuuming
|
| + return FilePath();
|
| +
|
| AutoLock file_names_auto_lock(file_names_lock_);
|
| DCHECK(file_names_.find(vfs_file_name) != file_names_.end());
|
| return file_names_[vfs_file_name];
|
|
|