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

Side by Side Diff: net/base/net_util_mac.h

Issue 734063004: Update from https://crrev.com/304418 (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 6 years, 1 month 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 unified diff | Download patch
« no previous file with comments | « net/base/net_util_linux.cc ('k') | net/base/net_util_mac.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(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_
OLDNEW
« no previous file with comments | « net/base/net_util_linux.cc ('k') | net/base/net_util_mac.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698