Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(724)

Unified Diff: device/bluetooth/android/bluetooth_jni_registrar.cc

Issue 1422093002: bluetooth: android: BluetoothRemoteGattCharacteristicAndroid::GetUUID. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@bta-cleanup-
Patch Set: fix non android builds Created 5 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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},

Powered by Google App Engine
This is Rietveld 408576698