1 // Copyright 2017 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 #include "net/base/network_interfaces.h"
6 
7 namespace net {
8 
GetNetworkList(NetworkInterfaceList * networks,int policy)9 bool GetNetworkList(NetworkInterfaceList* networks, int policy) {
10   NOTIMPLEMENTED();
11   return false;
12 }
13 
GetWifiSSID()14 std::string GetWifiSSID() {
15   NOTIMPLEMENTED();
16   return std::string();
17 }
18 
GetWifiPHYLayerProtocol()19 WifiPHYLayerProtocol GetWifiPHYLayerProtocol() {
20   return WIFI_PHY_LAYER_PROTOCOL_UNKNOWN;
21 }
22 
SetWifiOptions(int options)23 std::unique_ptr<ScopedWifiOptions> SetWifiOptions(int options) {
24   return nullptr;
25 }
26 
27 }  // namespace net
28