| Index: device/bluetooth/android/java/src/org/chromium/device/bluetooth/ChromeBluetoothRemoteGattCharacteristic.java
|
| diff --git a/device/bluetooth/android/java/src/org/chromium/device/bluetooth/ChromeBluetoothRemoteGattCharacteristic.java b/device/bluetooth/android/java/src/org/chromium/device/bluetooth/ChromeBluetoothRemoteGattCharacteristic.java
|
| index fbb79620a4ca86e4ed09920939aca4aff8953b1b..814602fe3eb53ee816a3b2149bc643d03732421d 100644
|
| --- a/device/bluetooth/android/java/src/org/chromium/device/bluetooth/ChromeBluetoothRemoteGattCharacteristic.java
|
| +++ b/device/bluetooth/android/java/src/org/chromium/device/bluetooth/ChromeBluetoothRemoteGattCharacteristic.java
|
| @@ -44,4 +44,11 @@ final class ChromeBluetoothRemoteGattCharacteristic {
|
| private String getUUID() {
|
| return mCharacteristic.getUuid().toString();
|
| }
|
| +
|
| + // Implements BluetoothRemoteGattCharacteristicAndroid::GetProperties.
|
| + @CalledByNative
|
| + private int getProperties() {
|
| + // TODO(scheib): Must read Extended Properties Descriptor. crbug.com/548449
|
| + return mCharacteristic.getProperties();
|
| + }
|
| }
|
|
|