OLD | NEW |
(Empty) | |
| 1 // Copyright 2015 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_WIN_H_ |
| 6 #define DEVICE_BLUETOOTH_BLUETOOTH_GATT_NOTIFY_SESSION_WIN_H_ |
| 7 |
| 8 #include "device/bluetooth/bluetooth_gatt_notify_session.h" |
| 9 |
| 10 #include "base/macros.h" |
| 11 #include "base/memory/weak_ptr.h" |
| 12 |
| 13 #include "device/bluetooth/bluetooth_remote_gatt_characteristic_win.h" |
| 14 |
| 15 namespace device { |
| 16 class DEVICE_BLUETOOTH_EXPORT BluetoothGattNotifySessionWin |
| 17 : public BluetoothGattNotifySession { |
| 18 public: |
| 19 BluetoothGattNotifySessionWin( |
| 20 base::WeakPtr<BluetoothRemoteGattCharacteristicWin> characteristic); |
| 21 ~BluetoothGattNotifySessionWin() override; |
| 22 |
| 23 std::string GetCharacteristicIdentifier() const override; |
| 24 bool IsActive() override; |
| 25 void Stop(const base::Closure& callback) override; |
| 26 |
| 27 private: |
| 28 bool is_active_; |
| 29 base::WeakPtr<BluetoothRemoteGattCharacteristicWin> characteristic_; |
| 30 DISALLOW_COPY_AND_ASSIGN(BluetoothGattNotifySessionWin); |
| 31 }; |
| 32 } // namespace device |
| 33 |
| 34 #endif // DEVICE_BLUETOOTH_BLUETOOTH_GATT_NOTIFY_SESSION_WIN_H_ |
OLD | NEW |