| OLD | NEW |
| (Empty) | |
| 1 // Copyright 2016 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 "components/proximity_auth/ble/bluetooth_low_energy_weave_channel.h" |
| 6 |
| 7 namespace proximity_auth { |
| 8 namespace weave { |
| 9 |
| 10 BluetoothLowEnergyWeaveChannel::BluetoothLowEnergyWeaveChannel( |
| 11 const device::BluetoothDevice* bluetooth_device, |
| 12 base::WeakPtr<BluetoothLocalGattCharacteristic> rx_characteristic) {} |
| 13 |
| 14 BluetoothLowEnergyWeaveChannel::~BluetoothLowEnergyWeaveChannel() {} |
| 15 |
| 16 void BluetoothLowEnergyWeaveChannel::RegisterObserver( |
| 17 std::shared_ptr<BluetoothLowEnergyWeaveChannel::Observer> observer) { |
| 18 observers_.push_back(observer); |
| 19 } |
| 20 |
| 21 std::shared_ptr<BluetoothLowEnergyWeaveServerConnection> |
| 22 BluetoothLowEnergyWeaveChannel::GetServerConnection() { |
| 23 return std::shared_ptr<BluetoothLowEnergyWeaveServerConnection>(nullptr); |
| 24 } |
| 25 |
| 26 } // namespace weave |
| 27 |
| 28 } // namespace proximity_auth |
| OLD | NEW |