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

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: Feedback 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
Index: net/http/http_cache_transaction.cc
diff --git a/net/http/http_cache_transaction.cc b/net/http/http_cache_transaction.cc
index 9bc83264feab97d61d1c8acdcd567b2442cc5ea9..e24c98d93d3886eb301733a41f51d17922a53384 100644
--- a/net/http/http_cache_transaction.cc
+++ b/net/http/http_cache_transaction.cc
@@ -576,6 +576,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