Index: net/http/http_cache_transaction.cc |
diff --git a/net/http/http_cache_transaction.cc b/net/http/http_cache_transaction.cc |
index a1974682368700bc4d84ec9bdca3d6243f6a939e..944590a740e4bbe6abcb60b9eaea502d11026ec2 100644 |
--- a/net/http/http_cache_transaction.cc |
+++ b/net/http/http_cache_transaction.cc |
@@ -694,6 +694,16 @@ int HttpCache::Transaction::ResumeNetworkStart() { |
return ERR_UNEXPECTED; |
} |
+// TODO(ttuttle): Should the HttpCache::Transaction be accumulating these |
+// instead of just proxying to the (current?) HttpNetworkTransaction? |
Randy Smith (Not in Mondays)
2015/04/23 19:04:08
Put a little bit more detail into this TODO, maybe
Deprecated (see juliatuttle)
2015/04/23 21:04:16
Better yet, I'll just do it now.
|
+void HttpCache::Transaction::GetConnectionAttempts( |
+ ConnectionAttempts* out) const { |
+ if (network_trans_) |
+ network_trans_->GetConnectionAttempts(out); |
+ else |
+ out->clear(); |
+} |
+ |
//----------------------------------------------------------------------------- |
void HttpCache::Transaction::DoCallback(int rv) { |