Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(217)

Unified Diff: net/quic/core/congestion_control/pacing_sender.cc

Issue 2629723003: Revert of Add quic_logging (Closed)
Patch Set: Created 3 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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();
}
« no previous file with comments | « net/quic/core/congestion_control/hybrid_slow_start_test.cc ('k') | net/quic/core/congestion_control/pacing_sender_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698