| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 // This is a mock of the http cache and related testing classes. To be fair, it | 5 // This is a mock of the http cache and related testing classes. To be fair, it |
| 6 // is not really a mock http cache given that it uses the real implementation of | 6 // is not really a mock http cache given that it uses the real implementation of |
| 7 // the http cache, but it has fake implementations of all required components, | 7 // the http cache, but it has fake implementations of all required components, |
| 8 // so it is useful for unit tests at the http layer. | 8 // so it is useful for unit tests at the http layer. |
| 9 | 9 |
| 10 #ifndef NET_HTTP_MOCK_HTTP_CACHE_H_ | 10 #ifndef NET_HTTP_MOCK_HTTP_CACHE_H_ |
| (...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 120 disk_cache::Entry** entry, | 120 disk_cache::Entry** entry, |
| 121 const CompletionCallback& callback) override; | 121 const CompletionCallback& callback) override; |
| 122 int DoomEntry(const std::string& key, | 122 int DoomEntry(const std::string& key, |
| 123 const CompletionCallback& callback) override; | 123 const CompletionCallback& callback) override; |
| 124 int DoomAllEntries(const CompletionCallback& callback) override; | 124 int DoomAllEntries(const CompletionCallback& callback) override; |
| 125 int DoomEntriesBetween(base::Time initial_time, | 125 int DoomEntriesBetween(base::Time initial_time, |
| 126 base::Time end_time, | 126 base::Time end_time, |
| 127 const CompletionCallback& callback) override; | 127 const CompletionCallback& callback) override; |
| 128 int DoomEntriesSince(base::Time initial_time, | 128 int DoomEntriesSince(base::Time initial_time, |
| 129 const CompletionCallback& callback) override; | 129 const CompletionCallback& callback) override; |
| 130 int CalculateSizeOfAllEntries(const CompletionCallback& callback) override; |
| 130 scoped_ptr<Iterator> CreateIterator() override; | 131 scoped_ptr<Iterator> CreateIterator() override; |
| 131 void GetStats(base::StringPairs* stats) override; | 132 void GetStats(base::StringPairs* stats) override; |
| 132 void OnExternalCacheHit(const std::string& key) override; | 133 void OnExternalCacheHit(const std::string& key) override; |
| 133 | 134 |
| 134 // Returns number of times a cache entry was successfully opened. | 135 // Returns number of times a cache entry was successfully opened. |
| 135 int open_count() const { return open_count_; } | 136 int open_count() const { return open_count_; } |
| 136 | 137 |
| 137 // Returns number of times a cache entry was successfully created. | 138 // Returns number of times a cache entry was successfully created. |
| 138 int create_count() const { return create_count_; } | 139 int create_count() const { return create_count_; } |
| 139 | 140 |
| (...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 263 | 264 |
| 264 scoped_ptr<disk_cache::Backend>* backend_; | 265 scoped_ptr<disk_cache::Backend>* backend_; |
| 265 CompletionCallback callback_; | 266 CompletionCallback callback_; |
| 266 bool block_; | 267 bool block_; |
| 267 bool fail_; | 268 bool fail_; |
| 268 }; | 269 }; |
| 269 | 270 |
| 270 } // namespace net | 271 } // namespace net |
| 271 | 272 |
| 272 #endif // NET_HTTP_MOCK_HTTP_CACHE_H_ | 273 #endif // NET_HTTP_MOCK_HTTP_CACHE_H_ |
| OLD | NEW |