| Index: device/bluetooth/public/interfaces/device.mojom
|
| diff --git a/device/bluetooth/public/interfaces/device.mojom b/device/bluetooth/public/interfaces/device.mojom
|
| index b8ee6ef753ef3669fd4914f96d7a73351dde2645..5448f342e424ba9cd95daceadb01f197c09b00db 100644
|
| --- a/device/bluetooth/public/interfaces/device.mojom
|
| +++ b/device/bluetooth/public/interfaces/device.mojom
|
| @@ -70,6 +70,9 @@ interface Device {
|
| GetServices() => (array<ServiceInfo> services);
|
|
|
| // Gets the GATT Characteristics in the GATT Service with |service_id|.
|
| + // If |characteristics| is null, an error occured while attempting to retrieve
|
| + // the array of characteristics. If |characteristics| is empty, this simply
|
| + // means that no characteristics were found.
|
| GetCharacteristics(string service_id) =>
|
| - (array<CharacteristicInfo> characteristics);
|
| + (array<CharacteristicInfo>? characteristics);
|
| };
|
|
|