Index: net/tools/dump_cache/upgrade.cc |
diff --git a/net/tools/dump_cache/upgrade.cc b/net/tools/dump_cache/upgrade.cc |
index 30fbc8c6839861a27f34e3cadaa09ec99b015831..fae924cafe30de9535985dce38775cb99813ba6f 100644 |
--- a/net/tools/dump_cache/upgrade.cc |
+++ b/net/tools/dump_cache/upgrade.cc |
@@ -326,7 +326,7 @@ bool MasterSM::DoInit() { |
FilePath::FromWStringHack(path_), 0, |
false, |
cache_thread_.message_loop_proxy(), |
- &cache, &cb); |
+ NULL, &cache, &cb); |
if (cb.GetResult(rv) != net::OK) { |
printf("Unable to initialize new files\n"); |
return false; |
@@ -607,7 +607,7 @@ SlaveSM::SlaveSM(const std::wstring& path, HANDLE channel) |
FilePath::FromWStringHack(path), 0, |
false, |
cache_thread_.message_loop_proxy(), |
- &cache, &cb); |
+ NULL, &cache, &cb); |
if (cb.GetResult(rv) != net::OK) { |
printf("Unable to open cache files\n"); |
return; |