| Index: net/base/ip_endpoint.cc
|
| diff --git a/net/base/ip_endpoint.cc b/net/base/ip_endpoint.cc
|
| index 65c5d50a8a9749ad486d1fcbf544eee90269ca60..d260706c49534c3ff56ea04c651eb41c36dbb363 100644
|
| --- a/net/base/ip_endpoint.cc
|
| +++ b/net/base/ip_endpoint.cc
|
| @@ -25,9 +25,9 @@ IPEndPoint::IPEndPoint() : port_(0) {}
|
|
|
| IPEndPoint::~IPEndPoint() {}
|
|
|
| -IPEndPoint::IPEndPoint(const IPAddressNumber& address, uint16 port)
|
| - : address_(address),
|
| - port_(port) {}
|
| +IPEndPoint::IPEndPoint(const IPAddressNumber& address, uint16_t port)
|
| + : address_(address), port_(port) {
|
| +}
|
|
|
| IPEndPoint::IPEndPoint(const IPEndPoint& endpoint) {
|
| address_ = endpoint.address_;
|
| @@ -88,9 +88,9 @@ bool IPEndPoint::FromSockAddr(const struct sockaddr* sock_addr,
|
| socklen_t sock_addr_len) {
|
| DCHECK(sock_addr);
|
|
|
| - const uint8* address;
|
| + const uint8_t* address;
|
| size_t address_len;
|
| - uint16 port;
|
| + uint16_t port;
|
| if (!GetIPAddressFromSockAddr(sock_addr, sock_addr_len, &address,
|
| &address_len, &port)) {
|
| return false;
|
|
|