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

Unified Diff: net/quic/congestion_control/inter_arrival_sender.cc

Issue 126283002: Land Recent QUIC Changes. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: removed extra space Created 6 years, 11 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/quic/congestion_control/inter_arrival_sender.cc
diff --git a/net/quic/congestion_control/inter_arrival_sender.cc b/net/quic/congestion_control/inter_arrival_sender.cc
index 632a41612be714485ccb7af36ad310c17c67434a..c64a2170ed4cb62f3c6d0c8236b710088246a4ec 100644
--- a/net/quic/congestion_control/inter_arrival_sender.cc
+++ b/net/quic/congestion_control/inter_arrival_sender.cc
@@ -261,8 +261,12 @@ bool InterArrivalSender::OnPacketSent(
return true;
}
-void InterArrivalSender::OnRetransmissionTimeout() {
+void InterArrivalSender::OnRetransmissionTimeout(
+ bool /*packets_retransmitted*/) {
// TODO(ianswett): Decrease the available bandwidth.
+ if (probing_) {
+ probe_->OnRetransmissionTimeout();
+ }
}
void InterArrivalSender::OnPacketAbandoned(
« no previous file with comments | « net/quic/congestion_control/inter_arrival_sender.h ('k') | net/quic/congestion_control/inter_arrival_sender_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698