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

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

Issue 935333002: Update from https://crrev.com/316786 (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 years, 10 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 unified diff | Download patch
« no previous file with comments | « net/base/net_util_linux.cc ('k') | net/base/net_util_posix.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2014 The Chromium Authors. All rights reserved. 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 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "net/base/net_util_mac.h" 5 #include "net/base/net_util_mac.h"
6 6
7 #include <ifaddrs.h> 7 #include <ifaddrs.h>
8 #include <net/if.h> 8 #include <net/if.h>
9 #include <netinet/in.h> 9 #include <netinet/in.h>
10 #include <set> 10 #include <set>
(...skipping 225 matching lines...) Expand 10 before | Expand all | Expand 10 after
236 #if !defined(OS_IOS) 236 #if !defined(OS_IOS)
237 ip_attributes_getter.reset(new IPAttributesGetterMacImpl()); 237 ip_attributes_getter.reset(new IPAttributesGetterMacImpl());
238 #endif 238 #endif
239 239
240 bool result = internal::GetNetworkListImpl(networks, policy, interfaces, 240 bool result = internal::GetNetworkListImpl(networks, policy, interfaces,
241 ip_attributes_getter.get()); 241 ip_attributes_getter.get());
242 freeifaddrs(interfaces); 242 freeifaddrs(interfaces);
243 return result; 243 return result;
244 } 244 }
245 245
246 std::string GetWifiSSID() {
247 NOTIMPLEMENTED();
248 return "";
249 }
250
246 } // namespace net 251 } // namespace net
OLDNEW
« no previous file with comments | « net/base/net_util_linux.cc ('k') | net/base/net_util_posix.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698