| 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 #ifndef DEVICE_BLUETOOTH_BLUETOOTH_GATT_NOTIFY_SESSION_MAC_H_ | |
| 6 #define DEVICE_BLUETOOTH_BLUETOOTH_GATT_NOTIFY_SESSION_MAC_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 #include "device/bluetooth/bluetooth_remote_gatt_characteristic_mac.h" | |
| 13 | |
| 14 namespace device { | |
| 15 class DEVICE_BLUETOOTH_EXPORT BluetoothGattNotifySessionMac | |
| 16 : public BluetoothGattNotifySession { | |
| 17 public: | |
| 18 BluetoothGattNotifySessionMac( | |
| 19 base::WeakPtr<BluetoothRemoteGattCharacteristicMac> characteristic); | |
| 20 ~BluetoothGattNotifySessionMac() override; | |
| 21 | |
| 22 // Override BluetoothGattNotifySession interfaces. | |
| 23 std::string GetCharacteristicIdentifier() const override; | |
| 24 bool IsActive() override; | |
| 25 void Stop(const base::Closure& callback) override; | |
| 26 | |
| 27 private: | |
| 28 base::WeakPtr<BluetoothRemoteGattCharacteristicMac> characteristic_; | |
| 29 | |
| 30 DISALLOW_COPY_AND_ASSIGN(BluetoothGattNotifySessionMac); | |
| 31 }; | |
| 32 | |
| 33 } // namespace device | |
| 34 | |
| 35 #endif // DEVICE_BLUETOOTH_BLUETOOTH_GATT_NOTIFY_SESSION_MAC_H_ | |
| OLD | NEW |