Chromium Code Reviews

Unified Diff: net/disk_cache/cache_util_posix.cc

Issue 274012: Convert BlockFiles to use FilePath instead of wstring. (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
Index: net/disk_cache/cache_util_posix.cc
diff --git a/net/disk_cache/cache_util_posix.cc b/net/disk_cache/cache_util_posix.cc
index 180e521200d79ee596949dcc8cf6f9788158d1f7..97d3a4e4ef756396f029e7aace9af443bad0f29a 100644
--- a/net/disk_cache/cache_util_posix.cc
+++ b/net/disk_cache/cache_util_posix.cc
@@ -38,8 +38,4 @@ void DeleteCache(const std::wstring& path, bool remove_folder) {
DeleteCache(FilePath::FromWStringHack(path), remove_folder);
}
-bool DeleteCacheFile(const std::wstring& name) {
- return DeleteCacheFile(FilePath::FromWStringHack(name));
-}
-
} // namespace disk_cache

Powered by Google App Engine