1 // Copyright 2020 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/services/secure_channel/fake_nearby_connection_manager.h"
6 
7 namespace chromeos {
8 
9 namespace secure_channel {
10 
11 FakeNearbyConnectionManager::FakeNearbyConnectionManager() = default;
12 
13 FakeNearbyConnectionManager::~FakeNearbyConnectionManager() = default;
14 
PerformAttemptNearbyInitiatorConnection(const DeviceIdPair & device_id_pair)15 void FakeNearbyConnectionManager::PerformAttemptNearbyInitiatorConnection(
16     const DeviceIdPair& device_id_pair) {}
17 
PerformCancelNearbyInitiatorConnectionAttempt(const DeviceIdPair & device_id_pair)18 void FakeNearbyConnectionManager::PerformCancelNearbyInitiatorConnectionAttempt(
19     const DeviceIdPair& device_id_pair) {}
20 
21 }  // namespace secure_channel
22 
23 }  // namespace chromeos
24