summaryrefslogtreecommitdiffstats
path: root/device
diff options
context:
space:
mode:
authorscheib <scheib@chromium.org>2016-03-14 13:29:48 -0700
committerCommit bot <commit-bot@chromium.org>2016-03-14 20:31:00 +0000
commit29a63c03693019866fabebdb067a10110c5135d8 (patch)
tree45e16069960fc8cb706386fc3aced0b6b516b208 /device
parent1da3fb8942e35be069108fd0b53035fdfc422b5c (diff)
downloadchromium_src-29a63c03693019866fabebdb067a10110c5135d8.zip
chromium_src-29a63c03693019866fabebdb067a10110c5135d8.tar.gz
chromium_src-29a63c03693019866fabebdb067a10110c5135d8.tar.bz2
bluetooth: android: Register JNI for BluetoothRemoteGattDescriptorAndroid
BUG=566533 Review URL: https://codereview.chromium.org/1793983004 Cr-Commit-Position: refs/heads/master@{#381059}
Diffstat (limited to 'device')
-rw-r--r--device/bluetooth/android/bluetooth_jni_registrar.cc3
1 files changed, 3 insertions, 0 deletions
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},