| Index: net/quic/core/congestion_control/pacing_sender.cc
|
| diff --git a/net/quic/core/congestion_control/pacing_sender.cc b/net/quic/core/congestion_control/pacing_sender.cc
|
| index 976c408134c0ea19f2eb55435a976f44e796e89f..c645b8a8b41cca3ee82e38d5a935d05e825cff26 100644
|
| --- a/net/quic/core/congestion_control/pacing_sender.cc
|
| +++ b/net/quic/core/congestion_control/pacing_sender.cc
|
| @@ -109,9 +109,8 @@ bool PacingSender::OnPacketSent(
|
| return in_flight;
|
| }
|
|
|
| -QuicTime::Delta PacingSender::TimeUntilSend(
|
| - QuicTime now,
|
| - QuicByteCount bytes_in_flight) const {
|
| +QuicTime::Delta PacingSender::TimeUntilSend(QuicTime now,
|
| + QuicByteCount bytes_in_flight) {
|
| DCHECK(sender_ != nullptr);
|
| QuicTime::Delta time_until_send =
|
| sender_->TimeUntilSend(now, bytes_in_flight);
|
|
|