Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 // | 4 // |
| 5 // TCP cubic send side congestion algorithm, emulates the behavior of | 5 // TCP cubic send side congestion algorithm, emulates the behavior of TCP cubic. |
|
ramant (doing other things)
2015/03/14 01:21:47
nit: can roll this change back (it is not related,
| |
| 6 // TCP cubic. | |
| 7 | 6 |
| 8 #ifndef NET_QUIC_CONGESTION_CONTROL_TCP_CUBIC_SENDER_H_ | 7 #ifndef NET_QUIC_CONGESTION_CONTROL_TCP_CUBIC_SENDER_H_ |
| 9 #define NET_QUIC_CONGESTION_CONTROL_TCP_CUBIC_SENDER_H_ | 8 #define NET_QUIC_CONGESTION_CONTROL_TCP_CUBIC_SENDER_H_ |
| 10 | 9 |
| 11 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
| 12 #include "base/compiler_specific.h" | 11 #include "base/compiler_specific.h" |
| 13 #include "net/base/net_export.h" | 12 #include "net/base/net_export.h" |
| 14 #include "net/quic/congestion_control/cubic.h" | 13 #include "net/quic/congestion_control/cubic.h" |
| 15 #include "net/quic/congestion_control/hybrid_slow_start.h" | 14 #include "net/quic/congestion_control/hybrid_slow_start.h" |
| 16 #include "net/quic/congestion_control/prr_sender.h" | 15 #include "net/quic/congestion_control/prr_sender.h" |
| (...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 125 bool last_cutback_exited_slowstart_; | 124 bool last_cutback_exited_slowstart_; |
| 126 | 125 |
| 127 const QuicClock* clock_; | 126 const QuicClock* clock_; |
| 128 | 127 |
| 129 DISALLOW_COPY_AND_ASSIGN(TcpCubicSender); | 128 DISALLOW_COPY_AND_ASSIGN(TcpCubicSender); |
| 130 }; | 129 }; |
| 131 | 130 |
| 132 } // namespace net | 131 } // namespace net |
| 133 | 132 |
| 134 #endif // NET_QUIC_CONGESTION_CONTROL_TCP_CUBIC_SENDER_H_ | 133 #endif // NET_QUIC_CONGESTION_CONTROL_TCP_CUBIC_SENDER_H_ |
| OLD | NEW |