diff options
Diffstat (limited to 'net/http/mock_http_cache.cc')
-rw-r--r-- | net/http/mock_http_cache.cc | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/net/http/mock_http_cache.cc b/net/http/mock_http_cache.cc index dc06aaa..19c6154 100644 --- a/net/http/mock_http_cache.cc +++ b/net/http/mock_http_cache.cc @@ -468,6 +468,11 @@ int MockDiskCache::OpenNextEntry(void** iter, disk_cache::Entry** next_entry, return net::ERR_NOT_IMPLEMENTED; } +int MockDiskCache::OpenNextEntry(void** iter, disk_cache::Entry** next_entry, + const net::CompletionCallback& callback) { + return net::ERR_NOT_IMPLEMENTED; +} + void MockDiskCache::EndEnumeration(void** iter) { } |