| Index: device/bluetooth/android/bluetooth_jni_registrar.cc
|
| diff --git a/device/bluetooth/android/bluetooth_jni_registrar.cc b/device/bluetooth/android/bluetooth_jni_registrar.cc
|
| index 82b98946ffd97d1e8db0ee7fed3a49c13590933b..08aca219fe08151adad002e3b2363c9c436be6e6 100644
|
| --- a/device/bluetooth/android/bluetooth_jni_registrar.cc
|
| +++ b/device/bluetooth/android/bluetooth_jni_registrar.cc
|
| @@ -9,6 +9,7 @@
|
| #include "device/bluetooth/android/wrappers.h"
|
| #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_service_android.h"
|
|
|
| namespace device {
|
| @@ -18,6 +19,8 @@ namespace {
|
| const base::android::RegistrationMethod kRegisteredMethods[] = {
|
| {"BluetoothAdapterAndroid", device::BluetoothAdapterAndroid::RegisterJNI},
|
| {"BluetoothDeviceAndroid", device::BluetoothDeviceAndroid::RegisterJNI},
|
| + {"BluetoothRemoteGattCharacteristicAndroid",
|
| + device::BluetoothRemoteGattCharacteristicAndroid::RegisterJNI},
|
| {"BluetoothRemoteGattServiceAndroid",
|
| device::BluetoothRemoteGattServiceAndroid::RegisterJNI},
|
| {"Wrappers", device::WrappersRegisterJNI},
|
|
|