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

Unified Diff: net/disk_cache/disk_cache_test_util.cc

Issue 11649028: Add an IO thread index bitmap to disk cache. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: windows build fix Created 7 years, 11 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
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 dce005e3627d62148edfbf5d96b14c84055a8ba0..41adcb1eb71aff2302866f40b120a355c2526f74 100644
--- a/net/disk_cache/disk_cache_test_util.cc
+++ b/net/disk_cache/disk_cache_test_util.cc
@@ -68,7 +68,7 @@ bool CheckCacheIntegrity(const FilePath& path, bool new_eviction, uint32 mask) {
if (new_eviction)
cache->SetNewEviction();
cache->SetFlags(disk_cache::kNoRandom);
- if (cache->SyncInit() != net::OK)
+ if (cache->SyncInit(NULL) != net::OK)
return false;
return cache->SelfCheck() >= 0;
}

Powered by Google App Engine
This is Rietveld 408576698