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

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

Issue 125403006: Various QUIC cleanups to sync with internal code. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix comments 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/send_algorithm_interface.cc
diff --git a/net/quic/congestion_control/send_algorithm_interface.cc b/net/quic/congestion_control/send_algorithm_interface.cc
index 493d84e88ef3bf0a24f58b022eebb1787033ac0d..e3452c476597e018cf1bb848ca6474e20c14506b 100644
--- a/net/quic/congestion_control/send_algorithm_interface.cc
+++ b/net/quic/congestion_control/send_algorithm_interface.cc
@@ -5,6 +5,7 @@
#include "net/quic/congestion_control/send_algorithm_interface.h"
#include "net/quic/congestion_control/fix_rate_sender.h"
+#include "net/quic/congestion_control/inter_arrival_sender.h"
#include "net/quic/congestion_control/tcp_cubic_sender.h"
#include "net/quic/quic_protocol.h"
@@ -20,7 +21,7 @@ SendAlgorithmInterface* SendAlgorithmInterface::Create(
case kTCP:
return new TcpCubicSender(clock, kUseReno, kMaxTcpCongestionWindow);
case kInterArrival:
- break; // TODO(pwestin) Implement.
+ return new InterArrivalSender(clock);
case kFixRate:
return new FixRateSender(clock);
}
« no previous file with comments | « net/quic/congestion_control/receive_algorithm_interface.cc ('k') | net/quic/congestion_control/tcp_cubic_sender.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698