Index: net/base/net_util.h |
diff --git a/net/base/net_util.h b/net/base/net_util.h |
index 44b913ae280bdd5653ecf5ad3d34f9c84853f3b3..9e9dbad4613914bf257bd274edb692c79e947ee3 100644 |
--- a/net/base/net_util.h |
+++ b/net/base/net_util.h |
@@ -468,7 +468,7 @@ struct NET_EXPORT NetworkInterface { |
uint32 interface_index, |
NetworkChangeNotifier::ConnectionType type, |
const IPAddressNumber& address, |
- uint32 network_prefix, |
+ uint32 prefix_length, |
int ip_address_attributes); |
~NetworkInterface(); |
@@ -477,7 +477,7 @@ struct NET_EXPORT NetworkInterface { |
uint32 interface_index; // Always 0 on Android. |
NetworkChangeNotifier::ConnectionType type; |
IPAddressNumber address; |
- uint32 network_prefix; |
+ uint32 prefix_length; |
int ip_address_attributes; // Combination of |IPAddressAttributes|. |
}; |
@@ -487,9 +487,6 @@ typedef std::vector<NetworkInterface> NetworkInterfaceList; |
enum HostAddressSelectionPolicy { |
INCLUDE_HOST_SCOPE_VIRTUAL_INTERFACES = 0x0, |
EXCLUDE_HOST_SCOPE_VIRTUAL_INTERFACES = 0x1, |
- // Include temp address only when interface has both permanent and |
- // temp addresses. |
- INCLUDE_ONLY_TEMP_IPV6_ADDRESS_IF_POSSIBLE = 0x2, |
}; |
// Returns list of network interfaces except loopback interface. If an |