| OLD | NEW |
| 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 6 // 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 |
| 7 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 8 // | 4 // |
| 9 // This is the interface from the QuicConnection into the QUIC | 5 // This is the interface from the QuicConnection into the QUIC |
| 10 // congestion control code. It wraps the SendAlgorithmInterface and | 6 // congestion control code. It wraps the SendAlgorithmInterface and |
| 11 // ReceiveAlgorithmInterface and provides a single interface | 7 // ReceiveAlgorithmInterface and provides a single interface |
| 12 // for consumers. | 8 // for consumers. |
| 13 | 9 |
| 14 #ifndef NET_QUIC_CONGESTION_CONTROL_QUIC_CONGESTION_MANAGER_H_ | 10 #ifndef NET_QUIC_CONGESTION_CONTROL_QUIC_CONGESTION_MANAGER_H_ |
| (...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 116 PendingPacketsMap pending_packets_; | 112 PendingPacketsMap pending_packets_; |
| 117 QuicPacketSequenceNumber largest_missing_; | 113 QuicPacketSequenceNumber largest_missing_; |
| 118 QuicTime::Delta current_rtt_; | 114 QuicTime::Delta current_rtt_; |
| 119 | 115 |
| 120 DISALLOW_COPY_AND_ASSIGN(QuicCongestionManager); | 116 DISALLOW_COPY_AND_ASSIGN(QuicCongestionManager); |
| 121 }; | 117 }; |
| 122 | 118 |
| 123 } // namespace net | 119 } // namespace net |
| 124 | 120 |
| 125 #endif // NET_QUIC_CONGESTION_CONTROL_QUIC_CONGESTION_MANAGER_H_ | 121 #endif // NET_QUIC_CONGESTION_CONTROL_QUIC_CONGESTION_MANAGER_H_ |
| OLD | NEW |