Chromium Code Reviews

Unified Diff: net/disk_cache/entry_impl.cc

Issue 261045: Start migrating the disk cache to using FilePath. (Closed)
Patch Set: rebase Created 11 years, 2 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/disk_cache_test_util.cc ('k') | net/disk_cache/stress_cache.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/disk_cache/entry_impl.cc
diff --git a/net/disk_cache/entry_impl.cc b/net/disk_cache/entry_impl.cc
index 7d877c5de7a2ca72e163419eebeb27d5cdcaf3cb..163f217b3dc23bdc0a8c8d337565ba832a39db77 100644
--- a/net/disk_cache/entry_impl.cc
+++ b/net/disk_cache/entry_impl.cc
@@ -657,8 +657,8 @@ void EntryImpl::DeleteData(Addr address, int index) {
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.";
+ LOG(ERROR) << "Failed to delete " <<
+ backend_->GetFileName(address).value() << " from the cache.";
} else {
backend_->DeleteBlock(address, true);
}
@@ -692,7 +692,7 @@ File* EntryImpl::GetExternalFile(Addr address, int index) {
if (!files_[index].get()) {
// For a key file, use mixed mode IO.
scoped_refptr<File> file(new File(kKeyFileIndex == index));
- if (file->Init(backend_->GetFileName(address)))
+ if (file->Init(backend_->GetFileName(address).ToWStringHack()))
files_[index].swap(file);
}
return files_[index].get();
« no previous file with comments | « net/disk_cache/disk_cache_test_util.cc ('k') | net/disk_cache/stress_cache.cc » ('j') | no next file with comments »

Powered by Google App Engine