| Index: net/quic/core/congestion_control/pacing_sender.cc
|
| diff --git a/net/quic/core/congestion_control/pacing_sender.cc b/net/quic/core/congestion_control/pacing_sender.cc
|
| index 976c408134c0ea19f2eb55435a976f44e796e89f..cce05b9f2be61e9f2c69f132a5506c7a8207fe4c 100644
|
| --- a/net/quic/core/congestion_control/pacing_sender.cc
|
| +++ b/net/quic/core/congestion_control/pacing_sender.cc
|
| @@ -3,8 +3,6 @@
|
| // found in the LICENSE file.
|
|
|
| #include "net/quic/core/congestion_control/pacing_sender.h"
|
| -
|
| -#include "net/quic/platform/api/quic_logging.h"
|
|
|
| namespace net {
|
| namespace {
|
| @@ -128,13 +126,13 @@
|
|
|
| // If the next send time is within the alarm granularity, send immediately.
|
| if (ideal_next_packet_send_time_ > now + kAlarmGranularity) {
|
| - QUIC_DVLOG(1) << "Delaying packet: "
|
| - << (ideal_next_packet_send_time_ - now).ToMicroseconds();
|
| + DVLOG(1) << "Delaying packet: "
|
| + << (ideal_next_packet_send_time_ - now).ToMicroseconds();
|
| was_last_send_delayed_ = true;
|
| return ideal_next_packet_send_time_ - now;
|
| }
|
|
|
| - QUIC_DVLOG(1) << "Sending packet now";
|
| + DVLOG(1) << "Sending packet now";
|
| return QuicTime::Delta::Zero();
|
| }
|
|
|
|
|