naiveproxy/net/base/network_interfaces_nacl.cc

28 lines
605 B
C++
Raw Normal View History

2018-08-15 01:19:20 +03:00
// 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