| Index: net/quic/crypto/crypto_framer.h
|
| diff --git a/net/quic/crypto/crypto_framer.h b/net/quic/crypto/crypto_framer.h
|
| index 64137a20d26dc9bcfc97748be08dba40ad0763b1..420c1512df6ee4dbe3df1ea47d9e3bf2135b85d2 100644
|
| --- a/net/quic/crypto/crypto_framer.h
|
| +++ b/net/quic/crypto/crypto_framer.h
|
| @@ -5,10 +5,12 @@
|
| #ifndef NET_QUIC_CRYPTO_CRYPTO_FRAMER_H_
|
| #define NET_QUIC_CRYPTO_CRYPTO_FRAMER_H_
|
|
|
| +#include <stddef.h>
|
| +#include <stdint.h>
|
| +
|
| #include <utility>
|
| #include <vector>
|
|
|
| -#include "base/basictypes.h"
|
| #include "base/logging.h"
|
| #include "base/strings/string_piece.h"
|
| #include "net/base/net_export.h"
|
| @@ -79,7 +81,7 @@ class NET_EXPORT_PRIVATE CryptoFramer {
|
|
|
| static bool WritePadTag(QuicDataWriter* writer,
|
| size_t pad_length,
|
| - uint32* end_offset);
|
| + uint32_t* end_offset);
|
|
|
| // Represents the current state of the parsing state machine.
|
| enum CryptoFramerState {
|
| @@ -100,7 +102,7 @@ class NET_EXPORT_PRIVATE CryptoFramer {
|
| // The message currently being parsed.
|
| CryptoHandshakeMessage message_;
|
| // Number of entires in the message currently being parsed.
|
| - uint16 num_entries_;
|
| + uint16_t num_entries_;
|
| // tags_and_lengths_ contains the tags that are currently being parsed and
|
| // their lengths.
|
| std::vector<std::pair<QuicTag, size_t>> tags_and_lengths_;
|
|
|