Index: net/quic/quic_server_session_base.cc |
diff --git a/net/quic/quic_server_session_base.cc b/net/quic/quic_server_session_base.cc |
index 63a4602680cefa749330bfda6979ac162dafd088..44bee9903c223bc844eccf053ae593ec98480adb 100644 |
--- a/net/quic/quic_server_session_base.cc |
+++ b/net/quic/quic_server_session_base.cc |
@@ -116,7 +116,7 @@ void QuicServerSessionBase::OnCongestionWindowChange(QuicTime now) { |
connection()->sent_packet_manager(); |
int64_t srtt_ms = |
sent_packet_manager.GetRttStats()->smoothed_rtt().ToMilliseconds(); |
- int64_t now_ms = now.Subtract(last_scup_time_).ToMilliseconds(); |
+ int64_t now_ms = (now - last_scup_time_).ToMilliseconds(); |
int64_t packets_since_last_scup = |
connection()->packet_number_of_last_sent_packet() - |
last_scup_packet_number_; |