Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(118)

Unified Diff: net/http/mock_http_cache.cc

Issue 2721933002: HttpCache::Transaction layer allowing parallel validation (Closed)
Patch Set: nit addressed Created 3 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « net/http/mock_http_cache.h ('k') | net/url_request/url_request_http_job_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/http/mock_http_cache.cc
diff --git a/net/http/mock_http_cache.cc b/net/http/mock_http_cache.cc
index 47125a30cc53f4bdf2969ae35e1c5b607c2706c4..e676122b53f4c77492d3676dac08bf517b0220dd 100644
--- a/net/http/mock_http_cache.cc
+++ b/net/http/mock_http_cache.cc
@@ -534,6 +534,13 @@ void MockDiskCache::CallbackLater(const CompletionCallback& callback,
FROM_HERE, base::Bind(&CallbackForwader, callback, result));
}
+bool MockDiskCache::IsDiskEntryDoomed(const std::string& key) {
+ auto it = entries_.find(key);
+ if (it == entries_.end())
+ return false;
+ return it->second->is_doomed();
+}
+
//-----------------------------------------------------------------------------
int MockBackendFactory::CreateBackend(
@@ -647,6 +654,41 @@ void MockHttpCache::SetTestMode(int test_mode) {
g_test_mode = test_mode;
}
+bool MockHttpCache::IsWriterPresent(const std::string& key) {
+ HttpCache::ActiveEntry* entry = http_cache_.FindActiveEntry(key);
+ if (entry)
+ return entry->writer;
+ return false;
+}
+
+bool MockHttpCache::IsHeadersTransactionPresent(const std::string& key) {
+ HttpCache::ActiveEntry* entry = http_cache_.FindActiveEntry(key);
+ if (entry)
+ return entry->headers_transaction;
+ return false;
+}
+
+int MockHttpCache::GetCountReaders(const std::string& key) {
+ HttpCache::ActiveEntry* entry = http_cache_.FindActiveEntry(key);
+ if (entry)
+ return entry->readers.size();
+ return false;
+}
+
+int MockHttpCache::GetCountAddToEntryQueue(const std::string& key) {
+ HttpCache::ActiveEntry* entry = http_cache_.FindActiveEntry(key);
+ if (entry)
+ return entry->add_to_entry_queue.size();
+ return false;
+}
+
+int MockHttpCache::GetCountDoneHeadersQueue(const std::string& key) {
+ HttpCache::ActiveEntry* entry = http_cache_.FindActiveEntry(key);
+ if (entry)
+ return entry->done_headers_queue.size();
+ return false;
+}
+
//-----------------------------------------------------------------------------
int MockDiskCacheNoCB::CreateEntry(const std::string& key,
« no previous file with comments | « net/http/mock_http_cache.h ('k') | net/url_request/url_request_http_job_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698