Index: webrtc/base/network.cc |
diff --git a/webrtc/base/network.cc b/webrtc/base/network.cc |
index 1f413b39d890f3173d9b37ed12cb83cebf645a09..488c475137a2ee8d7ddbea1fa2ace59175cc3f36 100644 |
--- a/webrtc/base/network.cc |
+++ b/webrtc/base/network.cc |
@@ -119,6 +119,7 @@ std::string AdapterTypeToString(AdapterType type) { |
} |
} |
+#if !defined(__native_client__) |
bool IsIgnoredIPv6(const InterfaceAddress& ip) { |
if (ip.family() != AF_INET6) { |
return false; |
@@ -143,6 +144,7 @@ bool IsIgnoredIPv6(const InterfaceAddress& ip) { |
return false; |
} |
+#endif // !defined(__native_client__) |
} // namespace |