Index: net/quic/congestion_control/inter_arrival_overuse_detector.cc |
diff --git a/net/quic/congestion_control/inter_arrival_overuse_detector.cc b/net/quic/congestion_control/inter_arrival_overuse_detector.cc |
index 5e500b371bcee5e3851b248ac326a39b4136792c..e397c1ed20044e60571dbc86f53e17696e466ebf 100644 |
--- a/net/quic/congestion_control/inter_arrival_overuse_detector.cc |
+++ b/net/quic/congestion_control/inter_arrival_overuse_detector.cc |
@@ -163,9 +163,9 @@ void InterArrivalOveruseDetector::DetectDrift(int64 sigma_delta) { |
return; |
} |
if ((sigma_delta * kDetectTimeDiffStandardDeviation > |
- estimated_congestion_delay_.ToMicroseconds()) && |
+ estimated_congestion_delay_.ToMicroseconds()) && |
(sigma_delta * kDetectDriftStandardDeviation > |
- abs(accumulated_deltas_.ToMicroseconds()))) { |
+ std::abs(accumulated_deltas_.ToMicroseconds()))) { |
if (delta_estimate_ != kBandwidthSteady) { |
DVLOG(1) << "Bandwidth estimate drift: Steady" |
<< " mean:" << delta_mean_ |