| Index: net/quic/crypto/quic_decrypter.h
 | 
| diff --git a/net/quic/crypto/quic_decrypter.h b/net/quic/crypto/quic_decrypter.h
 | 
| index 21ff8b32b518b37a40c616862e2dbaf5edd2a593..4363e709df0223a78646e004425d171dc80bc2e3 100644
 | 
| --- a/net/quic/crypto/quic_decrypter.h
 | 
| +++ b/net/quic/crypto/quic_decrypter.h
 | 
| @@ -5,6 +5,9 @@
 | 
|  #ifndef NET_QUIC_CRYPTO_QUIC_DECRYPTER_H_
 | 
|  #define NET_QUIC_CRYPTO_QUIC_DECRYPTER_H_
 | 
|  
 | 
| +#include <stddef.h>
 | 
| +#include <stdint.h>
 | 
| +
 | 
|  #include "net/base/net_export.h"
 | 
|  #include "net/quic/quic_protocol.h"
 | 
|  
 | 
| @@ -58,7 +61,7 @@ class NET_EXPORT_PRIVATE QuicDecrypter {
 | 
|    virtual const char* cipher_name() const = 0;
 | 
|    // The ID of the cipher. Return 0x03000000 ORed with the 'cryptographic suite
 | 
|    // selector'.
 | 
| -  virtual uint32 cipher_id() const = 0;
 | 
| +  virtual uint32_t cipher_id() const = 0;
 | 
|  
 | 
|    // For use by unit tests only.
 | 
|    virtual base::StringPiece GetKey() const = 0;
 | 
| 
 |