Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(997)

Side by Side Diff: components/proximity_auth/ble/bluetooth_low_energy_weave_channel.cc

Issue 2183523006: Chrome OS uWeave Characteristics Server (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@migration
Patch Set: added channel Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698