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

Side by Side Diff: device/bluetooth/bluetooth_gatt_notify_session_android.h

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, 3 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 2014 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 #ifndef DEVICE_BLUETOOTH_BLUETOOTH_GATT_NOTIFY_SESSION_ANDROID_H_
6 #define DEVICE_BLUETOOTH_BLUETOOTH_GATT_NOTIFY_SESSION_ANDROID_H_
7
8 #include <string>
9
10 #include "base/callback.h"
11 #include "base/macros.h"
12 #include "device/bluetooth/bluetooth_gatt_notify_session.h"
13
14 namespace device {
15
16 class BluetoothAdapter;
17 class BluetoothRemoteGattCharacteristicAndroid;
18
19 // BluetoothGattNotifySessionAndroid implements
20 // BluetoothGattNotifySession for the Android platform.
21 //
22 // TODO(crbug.com/551634): Detect destroyed Characteristic or parents objects.
23 // TODO(crbug.com/551634): Implement Stop.
24 class DEVICE_BLUETOOTH_EXPORT BluetoothGattNotifySessionAndroid
25 : public device::BluetoothGattNotifySession {
26 public:
27 explicit BluetoothGattNotifySessionAndroid(
28 const std::string& characteristic_identifier);
29 ~BluetoothGattNotifySessionAndroid() override;
30
31 // BluetoothGattNotifySession overrides.
32 std::string GetCharacteristicIdentifier() const override;
33 bool IsActive() override;
34 void Stop(const base::Closure& callback) override;
35
36 private:
37 // Identifier of the associated characteristic.
38 std::string characteristic_id_;
39
40 DISALLOW_COPY_AND_ASSIGN(BluetoothGattNotifySessionAndroid);
41 };
42
43 } // namespace device
44
45 #endif // DEVICE_BLUETOOTH_BLUETOOTH_GATT_NOTIFY_SESSION_ANDROID_H_
OLDNEW
« no previous file with comments | « device/bluetooth/bluetooth_gatt_notify_session.cc ('k') | device/bluetooth/bluetooth_gatt_notify_session_android.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698