| Index: net/quic/core/congestion_control/hybrid_slow_start.cc
|
| diff --git a/net/quic/core/congestion_control/hybrid_slow_start.cc b/net/quic/core/congestion_control/hybrid_slow_start.cc
|
| index 74364cc427ca6667407989fea6e07d781ca3b00a..7cac328bd270aaa3fb94956ed9808c7accd90b72 100644
|
| --- a/net/quic/core/congestion_control/hybrid_slow_start.cc
|
| +++ b/net/quic/core/congestion_control/hybrid_slow_start.cc
|
| @@ -5,8 +5,6 @@
|
| #include "net/quic/core/congestion_control/hybrid_slow_start.h"
|
|
|
| #include <algorithm>
|
| -
|
| -#include "net/quic/platform/api/quic_logging.h"
|
|
|
| namespace net {
|
|
|
| @@ -48,7 +46,7 @@
|
| }
|
|
|
| void HybridSlowStart::StartReceiveRound(QuicPacketNumber last_sent) {
|
| - QUIC_DVLOG(1) << "Reset hybrid slow start @" << last_sent;
|
| + DVLOG(1) << "Reset hybrid slow start @" << last_sent;
|
| end_packet_number_ = last_sent;
|
| current_min_rtt_ = QuicTime::Delta::Zero();
|
| rtt_sample_count_ = 0;
|
|
|