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

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: AddTransaction to take unique_ptr of network transaction. Created 3 years, 7 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 518944650747e6a3dc7f39c58b4b4d7cb1610758..4c9720b0a713832c95a4a7d4ab0ed87effc8dd73 100644
--- a/net/http/http_cache_transaction.cc
+++ b/net/http/http_cache_transaction.cc
@@ -570,6 +570,11 @@ size_t HttpCache::Transaction::EstimateMemoryUsage() const {
return 0;
}
+void HttpCache::Transaction::SetSharedWritingFailState(int result) {
+ // TODO(shivanisha): Implement when integrated with HttpCache::Writers.
+ NOTIMPLEMENTED();
+}
+
//-----------------------------------------------------------------------------
// A few common patterns: (Foo* means Foo -> FooComplete)

Powered by Google App Engine
This is Rietveld 408576698