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

Unified Diff: net/http/http_cache_transaction.cc

Issue 2886483002: Adds a new class HttpCache::Writers for multiple cache transactions reading from the network. (Closed)
Patch Set: Fix test class memory leak 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
Index: net/http/http_cache_transaction.cc
diff --git a/net/http/http_cache_transaction.cc b/net/http/http_cache_transaction.cc
index 6be3d8711dc70b41ae8a3c269ff74d60e7cd61d5..00328c9d86926037047fefdb867f8b0dc0d0264b 100644
--- a/net/http/http_cache_transaction.cc
+++ b/net/http/http_cache_transaction.cc
@@ -579,6 +579,11 @@ size_t HttpCache::Transaction::EstimateMemoryUsage() const {
return 0;
}
+void HttpCache::Transaction::SetSharedWritingFailState(int result) {
+ // TODO(shivanisha): Implement when integrating with HttpCache::Writers.
+ NOTIMPLEMENTED();
+}
+
//-----------------------------------------------------------------------------
// A few common patterns: (Foo* means Foo -> FooComplete)

Powered by Google App Engine
This is Rietveld 408576698