| Index: net/quic/congestion_control/cubic.h
|
| diff --git a/net/quic/congestion_control/cubic.h b/net/quic/congestion_control/cubic.h
|
| index 481b8dc9af29dad61326e7ff914e7a7b459dabf0..493cc58d6bf408e994ba3b923cb145e74b1bab66 100644
|
| --- a/net/quic/congestion_control/cubic.h
|
| +++ b/net/quic/congestion_control/cubic.h
|
| @@ -8,7 +8,9 @@
|
| #ifndef NET_QUIC_CONGESTION_CONTROL_CUBIC_H_
|
| #define NET_QUIC_CONGESTION_CONTROL_CUBIC_H_
|
|
|
| -#include "base/basictypes.h"
|
| +#include <stdint.h>
|
| +
|
| +#include "base/macros.h"
|
| #include "net/base/net_export.h"
|
| #include "net/quic/quic_bandwidth.h"
|
| #include "net/quic/quic_clock.h"
|
| @@ -85,7 +87,7 @@ class NET_EXPORT_PRIVATE Cubic {
|
| QuicPacketCount origin_point_congestion_window_;
|
|
|
| // Time to origin point of cubic function in 2^10 fractions of a second.
|
| - uint32 time_to_origin_point_;
|
| + uint32_t time_to_origin_point_;
|
|
|
| // Last congestion window in packets computed by cubic function.
|
| QuicPacketCount last_target_congestion_window_;
|
|
|