blob: 9aa90e6acc8b3ef843850878622f536cedfc737a [file] [log] [blame] [edit]
// Copyright 2023 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_local_device.h"
#include <string>
namespace shill {
MockLocalDevice::MockLocalDevice(Manager* manager,
IfaceType type,
const std::string& link_name,
uint32_t phy_index,
WiFiPhy::Priority priority,
const EventCallback& callback)
: LocalDevice(manager, type, link_name, phy_index, priority, callback) {}
MockLocalDevice::~MockLocalDevice() = default;
} // namespace shill