| Index: net/quic/quic_socket_address_coder.h
 | 
| diff --git a/net/quic/quic_socket_address_coder.h b/net/quic/quic_socket_address_coder.h
 | 
| index 852682eba8e2e0d0601c99a0c853ae8f85d6ec70..0b620ba9a0a26332b0cd8fbb59538d254ca6898a 100644
 | 
| --- a/net/quic/quic_socket_address_coder.h
 | 
| +++ b/net/quic/quic_socket_address_coder.h
 | 
| @@ -5,9 +5,12 @@
 | 
|  #ifndef NET_QUIC_QUIC_SOCKET_ADDRESS_CODER_H_
 | 
|  #define NET_QUIC_QUIC_SOCKET_ADDRESS_CODER_H_
 | 
|  
 | 
| +#include <stddef.h>
 | 
| +#include <stdint.h>
 | 
| +
 | 
|  #include <string>
 | 
|  
 | 
| -#include "base/basictypes.h"
 | 
| +#include "base/macros.h"
 | 
|  #include "net/base/ip_endpoint.h"
 | 
|  #include "net/base/net_export.h"
 | 
|  
 | 
| @@ -28,7 +31,7 @@ class NET_EXPORT_PRIVATE QuicSocketAddressCoder {
 | 
|  
 | 
|    IPAddressNumber ip() const { return address_.address(); }
 | 
|  
 | 
| -  uint16 port() const { return address_.port(); }
 | 
| +  uint16_t port() const { return address_.port(); }
 | 
|  
 | 
|   private:
 | 
|    IPEndPoint address_;
 | 
| 
 |