Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(328)

Unified Diff: net/base/net_util.cc

Issue 538243003: proposed interface change at //net for webrtc (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Define IPv6 Address flags and expose online_links_ from address tracker Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: net/base/net_util.cc
diff --git a/net/base/net_util.cc b/net/base/net_util.cc
index 49bb241b9bf6d38e12ffcadc05ce05f2d9d2c0ad..518857ae7818454a1b2d9f8812c195005dbabb68 100644
--- a/net/base/net_util.cc
+++ b/net/base/net_util.cc
@@ -1004,13 +1004,15 @@ NetworkInterface::NetworkInterface(const std::string& name,
uint32 interface_index,
NetworkChangeNotifier::ConnectionType type,
const IPAddressNumber& address,
- size_t network_prefix)
+ size_t network_prefix,
+ int ipv6_flags)
: name(name),
friendly_name(friendly_name),
interface_index(interface_index),
type(type),
address(address),
- network_prefix(network_prefix) {
+ network_prefix(network_prefix),
+ ipv6_flags(ipv6_flags) {
}
NetworkInterface::~NetworkInterface() {

Powered by Google App Engine
This is Rietveld 408576698