#include "device/bluetooth/bluez/bluetooth_local_gatt_descriptor_bluez.h"
#include <string>
#include "base/logging.h"
#include "base/memory/ptr_util.h"
#include "device/bluetooth/bluez/bluetooth_local_gatt_characteristic_bluez.h"
#include "device/bluetooth/bluez/bluetooth_local_gatt_service_bluez.h"
namespace bluez {
base::WeakPtr<BluetoothLocalGattDescriptorBlueZ>
BluetoothLocalGattDescriptorBlueZ::Create(
const device::BluetoothUUID& uuid,
device::BluetoothGattCharacteristic::Permissions permissions,
BluetoothLocalGattCharacteristicBlueZ* characteristic) { … }
BluetoothLocalGattDescriptorBlueZ::BluetoothLocalGattDescriptorBlueZ(
const device::BluetoothUUID& uuid,
device::BluetoothGattCharacteristic::Permissions permissions,
BluetoothLocalGattCharacteristicBlueZ* characteristic)
: … { … }
BluetoothLocalGattDescriptorBlueZ::~BluetoothLocalGattDescriptorBlueZ() =
default;
device::BluetoothUUID BluetoothLocalGattDescriptorBlueZ::GetUUID() const { … }
device::BluetoothGattCharacteristic::Permissions
BluetoothLocalGattDescriptorBlueZ::GetPermissions() const { … }
device::BluetoothLocalGattCharacteristic*
BluetoothLocalGattDescriptorBlueZ::GetCharacteristic() const { … }
}