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

Unified Diff: net/http/mock_http_cache.cc

Issue 2847653002: Revert of HttpCache::Transaction layer allowing parallel validation (Closed)
Patch Set: Created 3 years, 8 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_quic_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 e676122b53f4c77492d3676dac08bf517b0220dd..47125a30cc53f4bdf2969ae35e1c5b607c2706c4 100644
--- a/net/http/mock_http_cache.cc
+++ b/net/http/mock_http_cache.cc
@@ -534,13 +534,6 @@
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(
@@ -652,41 +645,6 @@
// Static.
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;
}
//-----------------------------------------------------------------------------
« no previous file with comments | « net/http/mock_http_cache.h ('k') | net/url_request/url_request_quic_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698