| OLD | NEW |
| (Empty) |
| 1 // Copyright (c) 2014 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #ifndef NET_BASE_NET_UTIL_MAC_H_ | |
| 6 #define NET_BASE_NET_UTIL_MAC_H_ | |
| 7 | |
| 8 // This file is only used to expose some of the internals | |
| 9 // of net_util_mac.cc to tests. | |
| 10 | |
| 11 #include "base/macros.h" | |
| 12 #include "net/base/net_export.h" | |
| 13 #include "net/base/net_util.h" | |
| 14 | |
| 15 struct ifaddrs; | |
| 16 struct sockaddr; | |
| 17 | |
| 18 namespace net { | |
| 19 namespace internal { | |
| 20 | |
| 21 class NET_EXPORT IPAttributesGetterMac { | |
| 22 public: | |
| 23 IPAttributesGetterMac() {} | |
| 24 virtual ~IPAttributesGetterMac() {} | |
| 25 virtual bool IsInitialized() const = 0; | |
| 26 virtual bool GetIPAttributes(const char* ifname, | |
| 27 const sockaddr* sock_addr, | |
| 28 int* native_attributes) = 0; | |
| 29 | |
| 30 private: | |
| 31 DISALLOW_COPY_AND_ASSIGN(IPAttributesGetterMac); | |
| 32 }; | |
| 33 | |
| 34 NET_EXPORT bool GetNetworkListImpl(NetworkInterfaceList* networks, | |
| 35 int policy, | |
| 36 const ifaddrs* interfaces, | |
| 37 IPAttributesGetterMac* ip_attributes_getter); | |
| 38 | |
| 39 } // namespace internal | |
| 40 } // namespace net | |
| 41 | |
| 42 #endif // NET_BASE_NET_UTIL_MAC_H_ | |
| OLD | NEW |