diff options
Diffstat (limited to 'net/http/mock_http_cache.h')
-rw-r--r-- | net/http/mock_http_cache.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/net/http/mock_http_cache.h b/net/http/mock_http_cache.h index 8e492a9..d934e49 100644 --- a/net/http/mock_http_cache.h +++ b/net/http/mock_http_cache.h @@ -101,7 +101,7 @@ class MockDiskCache : public disk_cache::Backend { virtual int CreateEntry(const std::string& key, disk_cache::Entry** entry, net::OldCompletionCallback* callback) OVERRIDE; virtual int DoomEntry(const std::string& key, - net::OldCompletionCallback* callback) OVERRIDE; + const net::CompletionCallback& callback) OVERRIDE; virtual int DoomAllEntries(const net::CompletionCallback& callback) OVERRIDE; virtual int DoomEntriesBetween( const base::Time initial_time, @@ -135,9 +135,8 @@ class MockDiskCache : public disk_cache::Backend { private: typedef base::hash_map<std::string, MockDiskEntry*> EntryMap; - class CallbackRunner; - void CallbackLater(net::OldCompletionCallback* callback, int result); + void CallbackLater(const net::CompletionCallback& callback, int result); EntryMap entries_; int open_count_; |