Index: net/base/net_util.h |
diff --git a/net/base/net_util.h b/net/base/net_util.h |
index 57351114e4ecd258374ff843923bb8332603ef18..eb7829b158df6479f581e1d9cd74edf9e97ef44e 100644 |
--- a/net/base/net_util.h |
+++ b/net/base/net_util.h |
@@ -515,11 +515,13 @@ NET_EXPORT_PRIVATE bool IsLocalhost(const std::string& host); |
struct NET_EXPORT NetworkInterface { |
NetworkInterface(); |
NetworkInterface(const std::string& name, |
+ uint32 interface_index, |
const IPAddressNumber& address, |
size_t network_prefix); |
~NetworkInterface(); |
std::string name; |
+ uint32 interface_index; // Always 0 on Android. |
IPAddressNumber address; |
size_t network_prefix; |
}; |