1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #include "net/quic/congestion_control/receive_algorithm_interface.h"
7 #include "net/quic/congestion_control/fix_rate_receiver.h"
8 #include "net/quic/congestion_control/inter_arrival_receiver.h"
9 #include "net/quic/congestion_control/tcp_receiver.h"
13 // Factory for receive side congestion control algorithm.
14 ReceiveAlgorithmInterface
* ReceiveAlgorithmInterface::Create(
15 CongestionFeedbackType type
) {
18 return new TcpReceiver();
20 return new InterArrivalReceiver();
22 return new FixRateReceiver();