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

Unified Diff: net/quic/congestion_control/paced_sender.cc

Issue 266243004: Clang format slam. Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 7 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/congestion_control/paced_sender.cc
diff --git a/net/quic/congestion_control/paced_sender.cc b/net/quic/congestion_control/paced_sender.cc
index 87042a5a23ad9d9281097cc859003360b7acf5f2..5b092e4648b7fffe2b305e36bab5fc0a622698ee 100644
--- a/net/quic/congestion_control/paced_sender.cc
+++ b/net/quic/congestion_control/paced_sender.cc
@@ -42,7 +42,7 @@ QuicTime::Delta PacedSender::TimeUntilSend(QuicTime now,
// Pace the data.
QuicByteCount pacing_window = pace_.ToBytesPerPeriod(
QuicTime::Delta::FromMicroseconds(kMaxSchedulingDelayUs));
- QuicByteCount min_window_size = kMinPacketBurstSize * max_segment_size_;
+ QuicByteCount min_window_size = kMinPacketBurstSize * max_segment_size_;
pacing_window = max(pacing_window, min_window_size);
if (pacing_window > leaky_bucket_.BytesPending(now)) {

Powered by Google App Engine
This is Rietveld 408576698