blob: 0b66d054b20e6d8ada936a3bcbda955df54ef3d5 [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/services/secure_channel/fake_ble_advertisement_generator.h"
#include "chromeos/components/multidevice/remote_device_ref.h"
namespace chromeos {
namespace secure_channel {
FakeBleAdvertisementGenerator::FakeBleAdvertisementGenerator() {}
FakeBleAdvertisementGenerator::~FakeBleAdvertisementGenerator() {}
std::unique_ptr<DataWithTimestamp>
FakeBleAdvertisementGenerator::GenerateBleAdvertisementInternal(
chromeos::multidevice::RemoteDeviceRef remote_device,
const std::string& local_device_public_key) {
return std::move(advertisement_);
}
} // namespace secure_channel
} // namespace chromeos