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

Unified Diff: net/quic/congestion_control/receive_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/receive_algorithm_interface.cc
diff --git a/net/quic/congestion_control/receive_algorithm_interface.cc b/net/quic/congestion_control/receive_algorithm_interface.cc
index a49f64f160add005eb9414a0991903eeb324773f..fab4cfb0db515ea18108d806a02dfd4a4b5f8aad 100644
--- a/net/quic/congestion_control/receive_algorithm_interface.cc
+++ b/net/quic/congestion_control/receive_algorithm_interface.cc
@@ -5,6 +5,7 @@
#include "net/quic/congestion_control/receive_algorithm_interface.h"
#include "net/quic/congestion_control/fix_rate_receiver.h"
+#include "net/quic/congestion_control/inter_arrival_receiver.h"
#include "net/quic/congestion_control/tcp_receiver.h"
namespace net {
@@ -16,7 +17,7 @@ ReceiveAlgorithmInterface* ReceiveAlgorithmInterface::Create(
case kTCP:
return new TcpReceiver();
case kInterArrival:
- break; // TODO(pwestin) Implement.
+ return new InterArrivalReceiver();
case kFixRate:
return new FixRateReceiver();
}
« no previous file with comments | « net/quic/congestion_control/pacing_sender.h ('k') | net/quic/congestion_control/send_algorithm_interface.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698