| Index: net/quic/core/congestion_control/send_algorithm_interface.h
|
| diff --git a/net/quic/core/congestion_control/send_algorithm_interface.h b/net/quic/core/congestion_control/send_algorithm_interface.h
|
| index dacccba33a701526feabd18c004543f6bfef8bff..5abb3e94761060ee1b4365965aa0b888f6eea9ae 100644
|
| --- a/net/quic/core/congestion_control/send_algorithm_interface.h
|
| +++ b/net/quic/core/congestion_control/send_algorithm_interface.h
|
| @@ -82,9 +82,8 @@ class QUIC_EXPORT_PRIVATE SendAlgorithmInterface {
|
| virtual void OnConnectionMigration() = 0;
|
|
|
| // Calculate the time until we can send the next packet.
|
| - virtual QuicTime::Delta TimeUntilSend(
|
| - QuicTime now,
|
| - QuicByteCount bytes_in_flight) const = 0;
|
| + virtual QuicTime::Delta TimeUntilSend(QuicTime now,
|
| + QuicByteCount bytes_in_flight) = 0;
|
|
|
| // The pacing rate of the send algorithm. May be zero if the rate is unknown.
|
| virtual QuicBandwidth PacingRate(QuicByteCount bytes_in_flight) const = 0;
|
|
|