| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef DEVICE_BLUETOOTH_BLUEZ_BLUETOOTH_LOCAL_GATT_DESCRIPTOR_BLUEZ_H_ | 5 #ifndef DEVICE_BLUETOOTH_BLUEZ_BLUETOOTH_LOCAL_GATT_DESCRIPTOR_BLUEZ_H_ |
| 6 #define DEVICE_BLUETOOTH_BLUEZ_BLUETOOTH_LOCAL_GATT_DESCRIPTOR_BLUEZ_H_ | 6 #define DEVICE_BLUETOOTH_BLUEZ_BLUETOOTH_LOCAL_GATT_DESCRIPTOR_BLUEZ_H_ |
| 7 | 7 |
| 8 #include "base/macros.h" | 8 #include "base/macros.h" |
| 9 #include "base/memory/weak_ptr.h" | 9 #include "base/memory/weak_ptr.h" |
| 10 #include "dbus/object_path.h" | 10 #include "device/bluetooth/bluetooth_local_gatt_characteristic.h" |
| 11 #include "device/bluetooth/bluetooth_local_gatt_descriptor.h" | 11 #include "device/bluetooth/bluetooth_local_gatt_descriptor.h" |
| 12 #include "device/bluetooth/bluetooth_uuid.h" |
| 12 #include "device/bluetooth/bluez/bluetooth_gatt_descriptor_bluez.h" | 13 #include "device/bluetooth/bluez/bluetooth_gatt_descriptor_bluez.h" |
| 13 | 14 |
| 14 namespace bluez { | 15 namespace bluez { |
| 15 | 16 |
| 17 class BluetoothLocalGattCharacteristicBlueZ; |
| 18 |
| 16 // The BluetoothLocalGattDescriptorBlueZ class implements | 19 // The BluetoothLocalGattDescriptorBlueZ class implements |
| 17 // BluetoothRemoteGattDescriptor for remote and local GATT characteristic | 20 // BluetoothRemoteGattDescriptor for remote and local GATT characteristic |
| 18 // descriptors | 21 // descriptors for platforms that use BlueZ. |
| 19 // for platforms that use BlueZ. | |
| 20 class BluetoothLocalGattDescriptorBlueZ | 22 class BluetoothLocalGattDescriptorBlueZ |
| 21 : public BluetoothGattDescriptorBlueZ, | 23 : public BluetoothGattDescriptorBlueZ, |
| 22 public device::BluetoothLocalGattDescriptor { | 24 public device::BluetoothLocalGattDescriptor { |
| 23 public: | 25 public: |
| 26 static base::WeakPtr<BluetoothLocalGattDescriptor> Create( |
| 27 const device::BluetoothUUID& uuid, |
| 28 device::BluetoothGattCharacteristic::Permissions permissions, |
| 29 device::BluetoothLocalGattCharacteristic* characteristic); |
| 30 |
| 31 BluetoothLocalGattDescriptorBlueZ( |
| 32 const device::BluetoothUUID& uuid, |
| 33 BluetoothLocalGattCharacteristicBlueZ* characteristic); |
| 34 ~BluetoothLocalGattDescriptorBlueZ() override; |
| 35 |
| 36 // device::BluetoothLocalGattDescriptor overrides. |
| 37 device::BluetoothUUID GetUUID() const override; |
| 38 device::BluetoothGattCharacteristic::Permissions GetPermissions() |
| 39 const override; |
| 40 |
| 41 BluetoothLocalGattCharacteristicBlueZ* GetCharacteristic() const; |
| 42 |
| 24 private: | 43 private: |
| 25 explicit BluetoothLocalGattDescriptorBlueZ( | 44 // Needs access to weak_ptr_factory_. |
| 26 const dbus::ObjectPath& object_path); | 45 friend class device::BluetoothLocalGattDescriptor; |
| 27 ~BluetoothLocalGattDescriptorBlueZ() override; | 46 // UUID of this descriptor. |
| 47 device::BluetoothUUID uuid_; |
| 48 |
| 49 // Characteristic that contains this descriptor. |
| 50 BluetoothLocalGattCharacteristicBlueZ* characteristic_; |
| 28 | 51 |
| 29 // Note: This should remain the last member so it'll be destroyed and | 52 // Note: This should remain the last member so it'll be destroyed and |
| 30 // invalidate its weak pointers before any other members are destroyed. | 53 // invalidate its weak pointers before any other members are destroyed. |
| 31 base::WeakPtrFactory<BluetoothLocalGattDescriptorBlueZ> weak_ptr_factory_; | 54 base::WeakPtrFactory<BluetoothLocalGattDescriptorBlueZ> weak_ptr_factory_; |
| 32 | 55 |
| 33 DISALLOW_COPY_AND_ASSIGN(BluetoothLocalGattDescriptorBlueZ); | 56 DISALLOW_COPY_AND_ASSIGN(BluetoothLocalGattDescriptorBlueZ); |
| 34 }; | 57 }; |
| 35 | 58 |
| 36 } // namespace bluez | 59 } // namespace bluez |
| 37 | 60 |
| 38 #endif // DEVICE_BLUETOOTH_BLUEZ_BLUETOOTH_LOCAL_GATT_DESCRIPTOR_BLUEZ_H_ | 61 #endif // DEVICE_BLUETOOTH_BLUEZ_BLUETOOTH_LOCAL_GATT_DESCRIPTOR_BLUEZ_H_ |
| OLD | NEW |