| 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 // Cubic algorithm, helper class to TCP cubic. | 5 // Cubic algorithm, helper class to TCP cubic. | 
| 6 // For details see http://netsrv.csc.ncsu.edu/export/cubic_a_new_tcp_2008.pdf. | 6 // For details see http://netsrv.csc.ncsu.edu/export/cubic_a_new_tcp_2008.pdf. | 
| 7 | 7 | 
| 8 #ifndef NET_QUIC_CORE_CONGESTION_CONTROL_CUBIC_H_ | 8 #ifndef NET_QUIC_CORE_CONGESTION_CONTROL_CUBIC_H_ | 
| 9 #define NET_QUIC_CORE_CONGESTION_CONTROL_CUBIC_H_ | 9 #define NET_QUIC_CORE_CONGESTION_CONTROL_CUBIC_H_ | 
| 10 | 10 | 
| 11 #include <stdint.h> | 11 #include <cstdint> | 
| 12 | 12 | 
| 13 #include "base/macros.h" | 13 #include "base/macros.h" | 
| 14 #include "net/quic/core/quic_bandwidth.h" | 14 #include "net/quic/core/quic_bandwidth.h" | 
| 15 #include "net/quic/core/quic_connection_stats.h" | 15 #include "net/quic/core/quic_connection_stats.h" | 
| 16 #include "net/quic/core/quic_time.h" | 16 #include "net/quic/core/quic_time.h" | 
| 17 #include "net/quic/platform/api/quic_clock.h" | 17 #include "net/quic/platform/api/quic_clock.h" | 
| 18 #include "net/quic/platform/api/quic_export.h" | 18 #include "net/quic/platform/api/quic_export.h" | 
| 19 | 19 | 
| 20 namespace net { | 20 namespace net { | 
| 21 | 21 | 
| (...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 105   // Fix convex mode for cubic. | 105   // Fix convex mode for cubic. | 
| 106   // TODO(jokulik):  Remove once the cubic convex experiment is done. | 106   // TODO(jokulik):  Remove once the cubic convex experiment is done. | 
| 107   bool fix_convex_mode_; | 107   bool fix_convex_mode_; | 
| 108 | 108 | 
| 109   DISALLOW_COPY_AND_ASSIGN(Cubic); | 109   DISALLOW_COPY_AND_ASSIGN(Cubic); | 
| 110 }; | 110 }; | 
| 111 | 111 | 
| 112 }  // namespace net | 112 }  // namespace net | 
| 113 | 113 | 
| 114 #endif  // NET_QUIC_CORE_CONGESTION_CONTROL_CUBIC_H_ | 114 #endif  // NET_QUIC_CORE_CONGESTION_CONTROL_CUBIC_H_ | 
| OLD | NEW | 
|---|