| Index: chrome/common/local_discovery/service_discovery_client_impl.h | 
| diff --git a/chrome/common/local_discovery/service_discovery_client_impl.h b/chrome/common/local_discovery/service_discovery_client_impl.h | 
| index 777c3f7e3d9c06764061951f8febee867b88a845..640425ca777e34e44ace0371a423f53e7e82b3a1 100644 | 
| --- a/chrome/common/local_discovery/service_discovery_client_impl.h | 
| +++ b/chrome/common/local_discovery/service_discovery_client_impl.h | 
| @@ -194,8 +194,7 @@ class ServiceResolverImpl | 
| const net::RecordParsed* record) const; | 
|  | 
| // Convert an A record to an IP address. | 
| -  const net::IPAddressNumber& RecordToIPAddress( | 
| -      const net::RecordParsed* record) const; | 
| +  const net::IPAddress RecordToIPAddress(const net::RecordParsed* record) const; | 
|  | 
| // Convert an MDns status to a service discovery status. | 
| RequestStatus MDnsStatusToRequestStatus( | 
| @@ -256,8 +255,8 @@ class LocalDomainResolverImpl : public LocalDomainResolver { | 
|  | 
| net::MDnsClient* mdns_client_; | 
|  | 
| -  net::IPAddressNumber address_ipv4_; | 
| -  net::IPAddressNumber address_ipv6_; | 
| +  net::IPAddress address_ipv4_; | 
| +  net::IPAddress address_ipv6_; | 
|  | 
| base::CancelableCallback<void()> timeout_callback_; | 
|  | 
|  |