diff options
Diffstat (limited to 'net/http/mock_http_cache.cc')
-rw-r--r-- | net/http/mock_http_cache.cc | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/net/http/mock_http_cache.cc b/net/http/mock_http_cache.cc index 597c729..c34fe4a 100644 --- a/net/http/mock_http_cache.cc +++ b/net/http/mock_http_cache.cc @@ -611,12 +611,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; |