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

Side by Side Diff: device/bluetooth/bluetooth_gatt_notify_session_win.cc

Issue 2051333004: Implement BluetoothGattNotifySession::Stop on Android, 2nd attempt (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Address new review comments 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 "device/bluetooth/bluetooth_gatt_notify_session_win.h"
6
7 namespace device {
8 BluetoothGattNotifySessionWin::BluetoothGattNotifySessionWin(
9 base::WeakPtr<BluetoothRemoteGattCharacteristicWin> characteristic)
10 : characteristic_(characteristic) {}
11
12 BluetoothGattNotifySessionWin::~BluetoothGattNotifySessionWin() {}
13
14 std::string BluetoothGattNotifySessionWin::GetCharacteristicIdentifier() const {
15 if (characteristic_.get())
16 return characteristic_->GetIdentifier();
17 return std::string();
18 }
19
20 bool BluetoothGattNotifySessionWin::IsActive() {
21 return characteristic_.get() != nullptr;
22 }
23
24 void BluetoothGattNotifySessionWin::Stop(const base::Closure& callback) {
25 NOTIMPLEMENTED();
26 }
27
28 } // namespace device
OLDNEW
« no previous file with comments | « device/bluetooth/bluetooth_gatt_notify_session_win.h ('k') | device/bluetooth/bluetooth_remote_gatt_characteristic.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698