| Index: net/quic/crypto/local_strike_register_client.h
|
| diff --git a/net/quic/crypto/local_strike_register_client.h b/net/quic/crypto/local_strike_register_client.h
|
| index 5f576e99d38cd936e3e99227365c69982c9fd042..8e10497efb64c341a2fe28c560ae909e879a37fb 100644
|
| --- a/net/quic/crypto/local_strike_register_client.h
|
| +++ b/net/quic/crypto/local_strike_register_client.h
|
| @@ -5,7 +5,9 @@
|
| #ifndef NET_QUIC_CRYPTO_LOCAL_STRIKE_REGISTER_CLIENT_H_
|
| #define NET_QUIC_CRYPTO_LOCAL_STRIKE_REGISTER_CLIENT_H_
|
|
|
| -#include "base/basictypes.h"
|
| +#include <stdint.h>
|
| +
|
| +#include "base/macros.h"
|
| #include "base/strings/string_piece.h"
|
| #include "base/synchronization/lock.h"
|
| #include "net/base/net_export.h"
|
| @@ -21,9 +23,9 @@ class NET_EXPORT_PRIVATE LocalStrikeRegisterClient
|
| : public StrikeRegisterClient {
|
| public:
|
| LocalStrikeRegisterClient(unsigned max_entries,
|
| - uint32 current_time_external,
|
| - uint32 window_secs,
|
| - const uint8 orbit[8],
|
| + uint32_t current_time_external,
|
| + uint32_t window_secs,
|
| + const uint8_t orbit[8],
|
| StrikeRegister::StartupType startup);
|
|
|
| bool IsKnownOrbit(base::StringPiece orbit) const override;
|
|
|