Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(204)

Side by Side Diff: chromeos/components/tether/fake_network_configuration_remover.cc

Issue 2857853005: [CrOS Tether] Create TetherDisconnector, which disconnects from active tethering sessions. (Closed)
Patch Set: hansberry@ comments. Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(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
OLDNEW
« no previous file with comments | « chromeos/components/tether/fake_network_configuration_remover.h ('k') | chromeos/components/tether/initializer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698