| 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_;
|
|
|