Index: net/http/mock_http_cache.cc |
diff --git a/net/http/mock_http_cache.cc b/net/http/mock_http_cache.cc |
index 98efd701e5bb23b046fdafb9d558e253a87252d5..dc06aaa926d149b8ffffa4a4f79f83f28bbf9c11 100644 |
--- a/net/http/mock_http_cache.cc |
+++ b/net/http/mock_http_cache.cc |
@@ -442,12 +442,22 @@ int MockDiskCache::DoomAllEntries(net::OldCompletionCallback* callback) { |
return net::ERR_NOT_IMPLEMENTED; |
} |
+int MockDiskCache::DoomAllEntries(const net::CompletionCallback& callback) { |
+ return net::ERR_NOT_IMPLEMENTED; |
+} |
+ |
int MockDiskCache::DoomEntriesBetween(const base::Time initial_time, |
const base::Time end_time, |
net::OldCompletionCallback* callback) { |
return net::ERR_NOT_IMPLEMENTED; |
} |
+int MockDiskCache::DoomEntriesBetween(const base::Time initial_time, |
+ const base::Time end_time, |
+ const net::CompletionCallback& callback) { |
+ return net::ERR_NOT_IMPLEMENTED; |
+} |
+ |
int MockDiskCache::DoomEntriesSince(const base::Time initial_time, |
net::OldCompletionCallback* callback) { |
return net::ERR_NOT_IMPLEMENTED; |