OLD | NEW |
(Empty) | |
| 1 // Copyright 2017 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #include "chromeos/components/tether/fake_network_configuration_remover.h" |
| 6 |
| 7 namespace chromeos { |
| 8 |
| 9 namespace tether { |
| 10 |
| 11 FakeNetworkConfigurationRemover::FakeNetworkConfigurationRemover() |
| 12 : NetworkConfigurationRemover( |
| 13 nullptr /* network_state_handler */, |
| 14 nullptr /* managed_network_configuration_handler */) {} |
| 15 |
| 16 FakeNetworkConfigurationRemover::~FakeNetworkConfigurationRemover() {} |
| 17 |
| 18 void FakeNetworkConfigurationRemover::RemoveNetworkConfiguration( |
| 19 const std::string& wifi_network_guid) { |
| 20 last_removed_wifi_network_guid_ = wifi_network_guid; |
| 21 } |
| 22 |
| 23 } // namespace tether |
| 24 |
| 25 } // namespace chromeos |
OLD | NEW |