| 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 8d1a39ce745f202632697e0fb0c95e899aac92f3..4f608580c7f993047df68fd482c98639cb56e877 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/tcp_receiver.h"
|
| +#include "net/quic/congestion_control/timestamp_receiver.h"
|
|
|
| namespace net {
|
|
|
| @@ -14,9 +15,8 @@ ReceiveAlgorithmInterface* ReceiveAlgorithmInterface::Create(
|
| switch (type) {
|
| case kTCP:
|
| return new TcpReceiver();
|
| - case kInterArrival:
|
| - LOG(DFATAL) << "InterArrivalSendAlgorithm no longer supported.";
|
| - return NULL;
|
| + case kTimestamp:
|
| + return new TimestampReceiver();
|
| }
|
| return NULL;
|
| }
|
|
|