Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(26)

Unified Diff: net/disk_cache/disk_cache_test_util.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. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « net/disk_cache/disk_cache_test_util.h ('k') | net/tools/dump_cache/dump_files.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/disk_cache/disk_cache_test_util.cc
diff --git a/net/disk_cache/disk_cache_test_util.cc b/net/disk_cache/disk_cache_test_util.cc
index 77d731fb45197941799c34c4841a09dedcdf80b7..e3f3f9f760b61349b7c629e3a8f8b113c5754b2c 100644
--- a/net/disk_cache/disk_cache_test_util.cc
+++ b/net/disk_cache/disk_cache_test_util.cc
@@ -5,6 +5,7 @@
#include "net/disk_cache/disk_cache_test_util.h"
#include "base/logging.h"
+#include "base/file_path.h"
Lei Zhang 2009/10/13 20:15:54 I haven't bothered to put in file_path.h in file w
#include "base/file_util.h"
#include "base/path_service.h"
#include "net/base/net_errors.h"
@@ -72,11 +73,15 @@ bool CreateCacheTestFile(const wchar_t* name) {
return true;
}
-bool DeleteCache(const wchar_t* path) {
+bool DeleteCache(const FilePath& path) {
disk_cache::DeleteCache(path, false);
return true;
}
+bool DeleteCache(const wchar_t* path) {
+ return DeleteCache(FilePath::FromWStringHack(path));
+}
+
bool CheckCacheIntegrity(const std::wstring& path, bool new_eviction) {
scoped_ptr<disk_cache::BackendImpl> cache(new disk_cache::BackendImpl(
FilePath::FromWStringHack(path)));
« no previous file with comments | « net/disk_cache/disk_cache_test_util.h ('k') | net/tools/dump_cache/dump_files.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698