| Index: chrome/common/local_discovery/service_discovery_client.h | 
| diff --git a/chrome/common/local_discovery/service_discovery_client.h b/chrome/common/local_discovery/service_discovery_client.h | 
| index d5bb9c587dd738f93a2c01f3b8e406c8a3bbb2f0..93f5b16876586c62a2d7f7ceb680efdd864bf916 100644 | 
| --- a/chrome/common/local_discovery/service_discovery_client.h | 
| +++ b/chrome/common/local_discovery/service_discovery_client.h | 
| @@ -13,7 +13,7 @@ | 
| #include "base/time/time.h" | 
| #include "net/base/address_family.h" | 
| #include "net/base/host_port_pair.h" | 
| -#include "net/base/ip_address_number.h" | 
| +#include "net/base/ip_address.h" | 
|  | 
| namespace net { | 
| class MDnsClient; | 
| @@ -38,7 +38,7 @@ struct ServiceDescription { | 
| // The metadata (from TXT record) of the service. | 
| std::vector<std::string> metadata; | 
| // IP address of the service, if available from cache. May be empty. | 
| -  net::IPAddressNumber ip_address; | 
| +  net::IPAddress ip_address; | 
| // Last time the service was seen. | 
| base::Time last_seen; | 
| }; | 
| @@ -100,8 +100,8 @@ class ServiceResolver { | 
| class LocalDomainResolver { | 
| public: | 
| typedef base::Callback<void(bool /*success*/, | 
| -                              const net::IPAddressNumber& /*address_ipv4*/, | 
| -                              const net::IPAddressNumber& /*address_ipv6*/)> | 
| +                              const net::IPAddress& /*address_ipv4*/, | 
| +                              const net::IPAddress& /*address_ipv6*/)> | 
| IPAddressCallback; | 
|  | 
| virtual ~LocalDomainResolver() {} | 
|  |