| Index: components/proximity_auth/ble/bluetooth_low_energy_weave_channel.cc
|
| diff --git a/components/proximity_auth/ble/bluetooth_low_energy_weave_channel.cc b/components/proximity_auth/ble/bluetooth_low_energy_weave_channel.cc
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..92a81bc7664936a58fd2b1e0b077fa7ae67fb4e4
|
| --- /dev/null
|
| +++ b/components/proximity_auth/ble/bluetooth_low_energy_weave_channel.cc
|
| @@ -0,0 +1,28 @@
|
| +// 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 "components/proximity_auth/ble/bluetooth_low_energy_weave_channel.h"
|
| +
|
| +namespace proximity_auth {
|
| +namespace weave {
|
| +
|
| +BluetoothLowEnergyWeaveChannel::BluetoothLowEnergyWeaveChannel(
|
| + const device::BluetoothDevice* bluetooth_device,
|
| + base::WeakPtr<BluetoothLocalGattCharacteristic> rx_characteristic) {}
|
| +
|
| +BluetoothLowEnergyWeaveChannel::~BluetoothLowEnergyWeaveChannel() {}
|
| +
|
| +void BluetoothLowEnergyWeaveChannel::RegisterObserver(
|
| + std::shared_ptr<BluetoothLowEnergyWeaveChannel::Observer> observer) {
|
| + observers_.push_back(observer);
|
| +}
|
| +
|
| +std::shared_ptr<BluetoothLowEnergyWeaveServerConnection>
|
| +BluetoothLowEnergyWeaveChannel::GetServerConnection() {
|
| + return std::shared_ptr<BluetoothLowEnergyWeaveServerConnection>(nullptr);
|
| +}
|
| +
|
| +} // namespace weave
|
| +
|
| +} // namespace proximity_auth
|
|
|