| Index: net/base/address_list.cc
|
| diff --git a/net/base/address_list.cc b/net/base/address_list.cc
|
| index e4b25a033d1925696f39445ce0918cd250f6fff3..98704edd3c3ec8f9afab6223c15f2a54527bdaf9 100644
|
| --- a/net/base/address_list.cc
|
| +++ b/net/base/address_list.cc
|
| @@ -41,7 +41,7 @@ AddressList::AddressList(const IPEndPoint& endpoint) {
|
|
|
| // static
|
| AddressList AddressList::CreateFromIPAddress(const IPAddressNumber& address,
|
| - uint16 port) {
|
| + uint16_t port) {
|
| return AddressList(IPEndPoint(address, port));
|
| }
|
|
|
| @@ -76,7 +76,7 @@ AddressList AddressList::CreateFromAddrinfo(const struct addrinfo* head) {
|
| }
|
|
|
| // static
|
| -AddressList AddressList::CopyWithPort(const AddressList& list, uint16 port) {
|
| +AddressList AddressList::CopyWithPort(const AddressList& list, uint16_t port) {
|
| AddressList out;
|
| out.set_canonical_name(list.canonical_name());
|
| for (size_t i = 0; i < list.size(); ++i)
|
|
|