Chromium Code Reviews

Unified Diff: net/disk_cache/entry_impl.cc

Issue 159451: Disk Cache: Delete chained block files when they become empty.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 11 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
« no previous file with comments | « net/disk_cache/block_files_unittest.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/disk_cache/entry_impl.cc
===================================================================
--- net/disk_cache/entry_impl.cc (revision 21550)
+++ net/disk_cache/entry_impl.cc (working copy)
@@ -616,11 +616,11 @@
if (files_[index])
files_[index] = NULL; // Releases the object.
- if (!DeleteCacheFile(backend_->GetFileName(address))) {
- CACHE_UMA(COUNTS, "DeleteFailed", 0, 1);
+ int failure = DeleteCacheFile(backend_->GetFileName(address)) ? 0 : 1;
+ CACHE_UMA(COUNTS, "DeleteFailed", 0, failure);
+ if (failure)
LOG(ERROR) << "Failed to delete " << backend_->GetFileName(address) <<
" from the cache.";
- }
} else {
backend_->DeleteBlock(address, true);
}
« no previous file with comments | « net/disk_cache/block_files_unittest.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine