| 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 0124a9e17b1e67e8a489966e112033f715bd703a..cf752f65464429def611ffaac8397f48c955e933 100644
|
| --- a/net/quic/congestion_control/hybrid_slow_start.h
|
| +++ b/net/quic/congestion_control/hybrid_slow_start.h
|
| @@ -16,7 +16,9 @@
|
| #ifndef NET_QUIC_CONGESTION_CONTROL_HYBRID_SLOW_START_H_
|
| #define NET_QUIC_CONGESTION_CONTROL_HYBRID_SLOW_START_H_
|
|
|
| -#include "base/basictypes.h"
|
| +#include <stdint.h>
|
| +
|
| +#include "base/macros.h"
|
| #include "net/base/net_export.h"
|
| #include "net/quic/quic_protocol.h"
|
| #include "net/quic/quic_time.h"
|
| @@ -71,7 +73,7 @@ class NET_EXPORT_PRIVATE HybridSlowStart {
|
|
|
| // Variables for tracking acks received during a slow start round.
|
| QuicPacketNumber end_packet_number_; // End of the receive round.
|
| - uint32 rtt_sample_count_; // Number of rtt samples in the current round.
|
| + uint32_t rtt_sample_count_; // Number of rtt samples in the current round.
|
| QuicTime::Delta current_min_rtt_; // The minimum rtt of current round.
|
|
|
| DISALLOW_COPY_AND_ASSIGN(HybridSlowStart);
|
|
|