Index: net/quic/congestion_control/inter_arrival_sender.cc |
diff --git a/net/quic/congestion_control/inter_arrival_sender.cc b/net/quic/congestion_control/inter_arrival_sender.cc |
index 4ec40fb71cfcb77cf3449287183dd0ffacb537f2..2740f1ee0d983fcd46f9c5123a72b86c38c17d52 100644 |
--- a/net/quic/congestion_control/inter_arrival_sender.cc |
+++ b/net/quic/congestion_control/inter_arrival_sender.cc |
@@ -324,6 +324,13 @@ QuicTime::Delta InterArrivalSender::RetransmissionDelay() { |
return smoothed_rtt_.Add(smoothed_rtt_); |
} |
+QuicByteCount InterArrivalSender::GetCongestionWindow() { |
+ return 0; |
+} |
+ |
+void InterArrivalSender::SetCongestionWindow(QuicByteCount window) { |
+} |
+ |
void InterArrivalSender::EstimateNewBandwidth(QuicTime feedback_receive_time, |
QuicBandwidth sent_bandwidth) { |
QuicBandwidth new_bandwidth = bitrate_ramp_up_->GetNewBitrate(sent_bandwidth); |