| Index: net/quic/congestion_control/receive_algorithm_interface.h
|
| diff --git a/net/quic/congestion_control/receive_algorithm_interface.h b/net/quic/congestion_control/receive_algorithm_interface.h
|
| index cd96b022db2ba5bac249f739f1d26ed564a32a8f..ef4fb60a0780cdf5eb1913c3068a8898f761245e 100644
|
| --- a/net/quic/congestion_control/receive_algorithm_interface.h
|
| +++ b/net/quic/congestion_control/receive_algorithm_interface.h
|
| @@ -17,15 +17,10 @@ namespace net {
|
|
|
| class NET_EXPORT_PRIVATE ReceiveAlgorithmInterface {
|
| public:
|
| - static ReceiveAlgorithmInterface* Create(CongestionFeedbackType type);
|
| + static ReceiveAlgorithmInterface* Create();
|
|
|
| virtual ~ReceiveAlgorithmInterface() {}
|
|
|
| - // Returns false if no QuicCongestionFeedbackFrame block is needed.
|
| - // Otherwise fills in feedback and return true.
|
| - virtual bool GenerateCongestionFeedback(
|
| - QuicCongestionFeedbackFrame* feedback) = 0;
|
| -
|
| // Should be called for each incoming packet.
|
| // bytes: is the packet size in bytes including IP headers.
|
| // sequence_number: is the unique sequence number from the QUIC packet header.
|
|
|