blob: 08b3e0bec930fb0d8fbac8ffd0002b82aad7a81b [file] [log] [blame] [edit]
// Copyright 2018 The ChromiumOS Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "shill/wifi/mock_wifi.h"
#include <memory>
#include <string>
namespace shill {
MockWiFi::MockWiFi(Manager* manager,
const std::string& link_name,
const std::string& address,
int interface_index,
uint32_t phy_index,
WakeOnWiFiInterface* wake_on_wifi)
: WiFi(manager,
link_name,
address,
interface_index,
phy_index,
std::unique_ptr<WakeOnWiFiInterface>(wake_on_wifi)) {}
MockWiFi::~MockWiFi() = default;
} // namespace shill