blob: 603f5f4d7031d9bfe66d9216558acaaf8b2294c6 [file] [log] [blame]
// Copyright 2016 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_tether_disconnector.h"
namespace chromeos {
namespace tether {
FakeTetherDisconnector::FakeTetherDisconnector() = default;
FakeTetherDisconnector::~FakeTetherDisconnector() = default;
void FakeTetherDisconnector::DisconnectFromNetwork(
const std::string& tether_network_guid,
const base::Closure& success_callback,
const network_handler::StringResultCallback& error_callback,
const TetherSessionCompletionLogger::SessionCompletionReason&
session_completion_reason) {
last_disconnected_tether_network_guid_ = tether_network_guid;
last_session_completion_reason_ =
std::make_unique<TetherSessionCompletionLogger::SessionCompletionReason>(
session_completion_reason);
if (disconnection_error_name_.empty())
success_callback.Run();
else
error_callback.Run(disconnection_error_name_);
}
} // namespace tether
} // namespace chromeos