| Index: chrome/browser/local_discovery/service_discovery_shared_client.cc
|
| diff --git a/chrome/browser/local_discovery/service_discovery_shared_client.cc b/chrome/browser/local_discovery/service_discovery_shared_client.cc
|
| index e298a9e58c0091e1c8fd0cf137ac606cf46e3798..7b202e9825543eeed84c5dc30d80325887697d19 100644
|
| --- a/chrome/browser/local_discovery/service_discovery_shared_client.cc
|
| +++ b/chrome/browser/local_discovery/service_discovery_shared_client.cc
|
| @@ -11,6 +11,7 @@
|
| #endif
|
|
|
| #if defined(ENABLE_MDNS)
|
| +#include "chrome/browser/local_discovery/service_discovery_client_mdns.h"
|
| #include "chrome/browser/local_discovery/service_discovery_client_utility.h"
|
| #endif // ENABLE_MDNS
|
|
|
| @@ -44,7 +45,7 @@ scoped_refptr<ServiceDiscoverySharedClient>
|
| #if defined(OS_MACOSX)
|
| return new ServiceDiscoveryClientMac();
|
| #else
|
| - return new ServiceDiscoveryClientUtility();
|
| + return new ServiceDiscoveryClientMdns();
|
| #endif
|
| }
|
|
|
|
|