| Index: net/quic/congestion_control/send_algorithm_interface.h
|
| diff --git a/net/quic/congestion_control/send_algorithm_interface.h b/net/quic/congestion_control/send_algorithm_interface.h
|
| index 28509619a2268420cf3a8a8ac02ba56e81b2b7b2..359c65c61d91d3b48f82f579c0adaa95ebb92180 100644
|
| --- a/net/quic/congestion_control/send_algorithm_interface.h
|
| +++ b/net/quic/congestion_control/send_algorithm_interface.h
|
| @@ -15,6 +15,7 @@
|
| #include "net/quic/quic_bandwidth.h"
|
| #include "net/quic/quic_clock.h"
|
| #include "net/quic/quic_config.h"
|
| +#include "net/quic/quic_connection_stats.h"
|
| #include "net/quic/quic_protocol.h"
|
| #include "net/quic/quic_time.h"
|
|
|
| @@ -23,7 +24,8 @@ namespace net {
|
| class NET_EXPORT_PRIVATE SendAlgorithmInterface {
|
| public:
|
| static SendAlgorithmInterface* Create(const QuicClock* clock,
|
| - CongestionFeedbackType type);
|
| + CongestionFeedbackType type,
|
| + QuicConnectionStats* stats);
|
|
|
| virtual ~SendAlgorithmInterface() {}
|
|
|
|
|