| Index: net/quic/congestion_control/cubic.cc
|
| diff --git a/net/quic/congestion_control/cubic.cc b/net/quic/congestion_control/cubic.cc
|
| index dec529d132ffac89b1006011b30ecf73c475f826..22b0a90a0176811f78a5927a108902d75cb92b9b 100644
|
| --- a/net/quic/congestion_control/cubic.cc
|
| +++ b/net/quic/congestion_control/cubic.cc
|
| @@ -82,8 +82,8 @@ void Cubic::UpdateCongestionControlStats(
|
| QuicTcpCongestionWindow new_cubic_mode_cwnd,
|
| QuicTcpCongestionWindow new_reno_mode_cwnd) {
|
|
|
| - QuicTcpCongestionWindow highest_new_cwnd = std::max(new_cubic_mode_cwnd,
|
| - new_reno_mode_cwnd);
|
| + QuicTcpCongestionWindow highest_new_cwnd = max(new_cubic_mode_cwnd,
|
| + new_reno_mode_cwnd);
|
| if (last_congestion_window_ < highest_new_cwnd) {
|
| // cwnd will increase to highest_new_cwnd.
|
| stats_->cwnd_increase_congestion_avoidance +=
|
|
|