| 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 9633ecd86cd6a5bafd2981a74e126e009008f8fc..9173afe4a73906aaac2f1d5790f07cced8775ef5 100644
|
| --- a/net/quic/congestion_control/send_algorithm_interface.h
|
| +++ b/net/quic/congestion_control/send_algorithm_interface.h
|
| @@ -29,7 +29,7 @@ class NET_EXPORT_PRIVATE SendAlgorithmInterface {
|
|
|
| static SendAlgorithmInterface* Create(const QuicClock* clock,
|
| const RttStats* rtt_stats,
|
| - CongestionFeedbackType type,
|
| + CongestionControlType type,
|
| QuicConnectionStats* stats);
|
|
|
| virtual ~SendAlgorithmInterface() {}
|
| @@ -101,6 +101,8 @@ class NET_EXPORT_PRIVATE SendAlgorithmInterface {
|
| // aka ssthresh. Some send algorithms do not define a slow start
|
| // threshold and will return 0.
|
| virtual QuicByteCount GetSlowStartThreshold() const = 0;
|
| +
|
| + virtual CongestionControlType GetCongestionControlType() const = 0;
|
| };
|
|
|
| } // namespace net
|
|
|