#ifdef UNSAFE_BUFFERS_BUILD
#pragma allow_unsafe_buffers
#endif
#include "device/bluetooth/bluetooth_gatt_descriptor.h"
#include <stddef.h>
#include <vector>
#include "base/lazy_instance.h"
namespace device {
namespace {
struct UUIDs { … };
base::LazyInstance<const UUIDs>::Leaky g_uuids = …;
}
const BluetoothUUID&
BluetoothGattDescriptor::CharacteristicExtendedPropertiesUuid() { … }
const BluetoothUUID&
BluetoothGattDescriptor::CharacteristicUserDescriptionUuid() { … }
const BluetoothUUID&
BluetoothGattDescriptor::ClientCharacteristicConfigurationUuid() { … }
const BluetoothUUID&
BluetoothGattDescriptor::ServerCharacteristicConfigurationUuid() { … }
const BluetoothUUID&
BluetoothGattDescriptor::CharacteristicPresentationFormatUuid() { … }
const BluetoothUUID&
BluetoothGattDescriptor::CharacteristicAggregateFormatUuid() { … }
BluetoothGattDescriptor::BluetoothGattDescriptor() = default;
BluetoothGattDescriptor::~BluetoothGattDescriptor() = default;
}