summaryrefslogtreecommitdiffstats
path: root/chromium/net/dns/dns_config_service_posix.h
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/net/dns/dns_config_service_posix.h')
-rw-r--r--chromium/net/dns/dns_config_service_posix.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/chromium/net/dns/dns_config_service_posix.h b/chromium/net/dns/dns_config_service_posix.h
index be19ab90b08..ef28154c364 100644
--- a/chromium/net/dns/dns_config_service_posix.h
+++ b/chromium/net/dns/dns_config_service_posix.h
@@ -5,9 +5,11 @@
#ifndef NET_DNS_DNS_CONFIG_SERVICE_POSIX_H_
#define NET_DNS_DNS_CONFIG_SERVICE_POSIX_H_
+#if !defined(OS_ANDROID)
#include <sys/types.h>
#include <netinet/in.h>
#include <resolv.h>
+#endif
#include "base/compiler_specific.h"
#include "net/base/net_export.h"
@@ -57,9 +59,11 @@ enum ConfigParsePosixResult {
CONFIG_PARSE_POSIX_MAX // Bounding values for enumeration.
};
+#if !defined(OS_ANDROID)
// Fills in |dns_config| from |res|.
ConfigParsePosixResult NET_EXPORT_PRIVATE ConvertResStateToDnsConfig(
const struct __res_state& res, DnsConfig* dns_config);
+#endif
} // namespace internal