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

Unified Diff: net/quic/reliable_quic_stream.cc

Issue 241783002: Plumbs through delta_largest_observed from (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 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/quic/quic_sent_packet_manager.cc ('k') | net/quic/reliable_quic_stream_test.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/quic/reliable_quic_stream.cc
diff --git a/net/quic/reliable_quic_stream.cc b/net/quic/reliable_quic_stream.cc
index 36e87844e8dfd886091ee16f3adc64c20dddcab1..e61e5930b23f465a0da29722a077fe8b17d6479b 100644
--- a/net/quic/reliable_quic_stream.cc
+++ b/net/quic/reliable_quic_stream.cc
@@ -50,7 +50,9 @@ class ReliableQuicStream::ProxyAckNotifierDelegate
virtual void OnAckNotification(int num_original_packets,
int num_original_bytes,
int num_retransmitted_packets,
- int num_retransmitted_bytes) OVERRIDE {
+ int num_retransmitted_bytes,
+ QuicTime::Delta delta_largest_observed)
+ OVERRIDE {
DCHECK_LT(0, pending_acks_);
--pending_acks_;
num_original_packets_ += num_original_packets;
@@ -62,7 +64,8 @@ class ReliableQuicStream::ProxyAckNotifierDelegate
delegate_->OnAckNotification(num_original_packets_,
num_original_bytes_,
num_retransmitted_packets_,
- num_retransmitted_bytes_);
+ num_retransmitted_bytes_,
+ delta_largest_observed);
}
}
« no previous file with comments | « net/quic/quic_sent_packet_manager.cc ('k') | net/quic/reliable_quic_stream_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698