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

Unified Diff: net/quic/congestion_control/hybrid_slow_start.h

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/hybrid_slow_start.h
diff --git a/net/quic/congestion_control/hybrid_slow_start.h b/net/quic/congestion_control/hybrid_slow_start.h
index 5d36c53a334264cdc8b86b7146581f6de908e30c..5a4ccf6f543ff00326f02568751e1de2fe1551b9 100644
--- a/net/quic/congestion_control/hybrid_slow_start.h
+++ b/net/quic/congestion_control/hybrid_slow_start.h
@@ -54,16 +54,14 @@ class NET_EXPORT_PRIVATE HybridSlowStart {
void StartReceiveRound(QuicPacketSequenceNumber last_sent);
// Whether slow start has started.
- bool started() const {
- return started_;
- }
+ bool started() const { return started_; }
private:
// Whether a condition for exiting slow start has been found.
enum HystartState {
NOT_FOUND,
ACK_TRAIN, // A closely spaced ack train is too long.
- DELAY, // Too much increase in the round's min_rtt was observed.
+ DELAY, // Too much increase in the round's min_rtt was observed.
};
const QuicClock* clock_;

Powered by Google App Engine
This is Rietveld 408576698