| 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 f2a159fe771f659d0256ca72952a855b7a6c93e0..aa18368d1b78cb92ab25be48dcdc9533b2ba7b31 100644
|
| --- a/chrome/browser/local_discovery/service_discovery_shared_client.cc
|
| +++ b/chrome/browser/local_discovery/service_discovery_shared_client.cc
|
| @@ -5,6 +5,7 @@
|
| #include "chrome/browser/local_discovery/service_discovery_shared_client.h"
|
|
|
| #include "build/build_config.h"
|
| +#include "net/net_features.h"
|
|
|
| #if defined(OS_WIN)
|
| #include "base/files/file_path.h"
|
| @@ -19,7 +20,7 @@
|
| #include "chrome/browser/local_discovery/service_discovery_client_mac_factory.h"
|
| #endif
|
|
|
| -#if defined(ENABLE_MDNS)
|
| +#if BUILDFLAG(ENABLE_MDNS)
|
| #include "chrome/browser/local_discovery/service_discovery_client_mdns.h"
|
| #endif // ENABLE_MDNS
|
|
|
| @@ -72,7 +73,7 @@ ServiceDiscoverySharedClient::~ServiceDiscoverySharedClient() {
|
| g_service_discovery_client = NULL;
|
| }
|
|
|
| -#if defined(ENABLE_MDNS) || defined(OS_MACOSX)
|
| +#if BUILDFLAG(ENABLE_MDNS) || defined(OS_MACOSX)
|
|
|
| scoped_refptr<ServiceDiscoverySharedClient>
|
| ServiceDiscoverySharedClient::GetInstance() {
|
|
|