From 29a63c03693019866fabebdb067a10110c5135d8 Mon Sep 17 00:00:00 2001 From: scheib Date: Mon, 14 Mar 2016 13:29:48 -0700 Subject: bluetooth: android: Register JNI for BluetoothRemoteGattDescriptorAndroid BUG=566533 Review URL: https://codereview.chromium.org/1793983004 Cr-Commit-Position: refs/heads/master@{#381059} --- device/bluetooth/android/bluetooth_jni_registrar.cc | 3 +++ 1 file changed, 3 insertions(+) (limited to 'device') diff --git a/device/bluetooth/android/bluetooth_jni_registrar.cc b/device/bluetooth/android/bluetooth_jni_registrar.cc index 21712c2..398b142 100644 --- a/device/bluetooth/android/bluetooth_jni_registrar.cc +++ b/device/bluetooth/android/bluetooth_jni_registrar.cc @@ -11,6 +11,7 @@ #include "device/bluetooth/bluetooth_adapter_android.h" #include "device/bluetooth/bluetooth_device_android.h" #include "device/bluetooth/bluetooth_remote_gatt_characteristic_android.h" +#include "device/bluetooth/bluetooth_remote_gatt_descriptor_android.h" #include "device/bluetooth/bluetooth_remote_gatt_service_android.h" namespace device { @@ -22,6 +23,8 @@ const base::android::RegistrationMethod kRegisteredMethods[] = { {"BluetoothDeviceAndroid", device::BluetoothDeviceAndroid::RegisterJNI}, {"BluetoothRemoteGattCharacteristicAndroid", device::BluetoothRemoteGattCharacteristicAndroid::RegisterJNI}, + {"BluetoothRemoteGattDescriptorAndroid", + device::BluetoothRemoteGattDescriptorAndroid::RegisterJNI}, {"BluetoothRemoteGattServiceAndroid", device::BluetoothRemoteGattServiceAndroid::RegisterJNI}, {"Wrappers", device::WrappersRegisterJNI}, -- cgit v1.1