OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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.h" | 5 #include "net/base/net_util.h" |
6 | 6 |
7 #include <sys/types.h> | 7 #include <sys/types.h> |
8 | 8 |
9 #include "base/file_path.h" | 9 #include "base/file_path.h" |
10 #include "base/logging.h" | 10 #include "base/logging.h" |
(...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
134 networks->push_back(NetworkInterface(name, address.address())); | 134 networks->push_back(NetworkInterface(name, address.address())); |
135 } | 135 } |
136 } | 136 } |
137 | 137 |
138 freeifaddrs(interfaces); | 138 freeifaddrs(interfaces); |
139 | 139 |
140 return true; | 140 return true; |
141 #endif | 141 #endif |
142 } | 142 } |
143 | 143 |
| 144 WifiPhyMode GetWifiPhyMode() { |
| 145 return WIFI_PHY_MODE_UNKNOWN; |
| 146 } |
| 147 |
144 } // namespace net | 148 } // namespace net |
OLD | NEW |