Index: webkit/database/database_tracker.cc |
=================================================================== |
--- webkit/database/database_tracker.cc (revision 60512) |
+++ webkit/database/database_tracker.cc (working copy) |
@@ -629,7 +629,7 @@ |
bool handle_closed = false; |
FileHandlesMap::iterator it = incognito_file_handles_.find(vfs_file_name); |
if (it != incognito_file_handles_.end()) { |
- handle_closed = !base::ClosePlatformFile(it->second); |
+ handle_closed = base::ClosePlatformFile(it->second); |
if (handle_closed) |
incognito_file_handles_.erase(it); |
} |