| Index: net/http/mock_http_cache.cc
|
| diff --git a/net/http/mock_http_cache.cc b/net/http/mock_http_cache.cc
|
| index c21e1fc0dd01eb0af3cd5693547030c937e67088..fcafea32c0d6dba26c0e7d25a6f65f37fecea096 100644
|
| --- a/net/http/mock_http_cache.cc
|
| +++ b/net/http/mock_http_cache.cc
|
| @@ -68,6 +68,7 @@ struct MockDiskEntry::CallbackInfo {
|
|
|
| MockDiskEntry::MockDiskEntry(const std::string& key)
|
| : key_(key),
|
| + in_memory_data_(0),
|
| doomed_(false),
|
| sparse_(false),
|
| fail_requests_(false),
|
| @@ -394,6 +395,7 @@ MockDiskCache::MockDiskCache()
|
| soft_failures_(false),
|
| double_create_check_(true),
|
| fail_sparse_requests_(false),
|
| + support_in_memory_entry_data_(true),
|
| defer_op_(MockDiskEntry::DEFER_NONE),
|
| resume_return_code_(0) {}
|
|
|
| @@ -552,6 +554,22 @@ size_t MockDiskCache::DumpMemoryStats(
|
| return 0u;
|
| }
|
|
|
| +uint8_t MockDiskCache::GetEntryInMemoryData(const std::string& key) {
|
| + if (!support_in_memory_entry_data_)
|
| + return 0;
|
| +
|
| + EntryMap::iterator it = entries_.find(key);
|
| + if (it != entries_.end())
|
| + return it->second->in_memory_data();
|
| + return 0;
|
| +}
|
| +
|
| +void MockDiskCache::SetEntryInMemoryData(const std::string& key, uint8_t data) {
|
| + EntryMap::iterator it = entries_.find(key);
|
| + if (it != entries_.end())
|
| + it->second->set_in_memory_data(data);
|
| +}
|
| +
|
| void MockDiskCache::ReleaseAll() {
|
| for (auto entry : entries_)
|
| entry.second->Release();
|
|
|