naiveproxy/net/base/network_interfaces_nacl.cc
2018-08-11 05:35:24 +00:00

28 lines
605 B
C++

// Copyright 2017 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "net/base/network_interfaces.h"
namespace net {
bool GetNetworkList(NetworkInterfaceList* networks, int policy) {
NOTIMPLEMENTED();
return false;
}
std::string GetWifiSSID() {
NOTIMPLEMENTED();
return std::string();
}
WifiPHYLayerProtocol GetWifiPHYLayerProtocol() {
return WIFI_PHY_LAYER_PROTOCOL_UNKNOWN;
}
std::unique_ptr<ScopedWifiOptions> SetWifiOptions(int options) {
return nullptr;
}
} // namespace net