blob: 8c713fb8136fbb247cd4f8fcca6a1dc31e43cdcc [file] [log] [blame]
// 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 "chromeos/components/tether/fake_network_configuration_remover.h"
namespace chromeos {
namespace tether {
FakeNetworkConfigurationRemover::FakeNetworkConfigurationRemover()
: NetworkConfigurationRemover(
nullptr /* managed_network_configuration_handler */) {}
FakeNetworkConfigurationRemover::~FakeNetworkConfigurationRemover() = default;
void FakeNetworkConfigurationRemover::RemoveNetworkConfigurationByPath(
const std::string& wifi_network_path) {
last_removed_wifi_network_path_ = wifi_network_path;
}
} // namespace tether
} // namespace chromeos