Update comments of TabObserver#onLoadStarted and rename onContentChanged
[chromium-blink-merge.git] / device / bluetooth / android / bluetooth_jni_registrar.cc
blob5012387fcfa160d32917ae6c43770c251b180eb3
1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #include "device/bluetooth/android/bluetooth_jni_registrar.h"
7 #include "base/android/jni_android.h"
8 #include "base/android/jni_registrar.h"
9 #include "device/bluetooth/bluetooth_adapter_android.h"
11 namespace device {
12 namespace android {
13 namespace {
15 const base::android::RegistrationMethod kRegisteredMethods[] = {
16 {"BluetoothAdapter", device::BluetoothAdapterAndroid::RegisterJNI},
19 } // namespace
21 bool RegisterBluetoothJni(JNIEnv* env) {
22 return RegisterNativeMethods(env, kRegisteredMethods,
23 arraysize(kRegisteredMethods));
26 } // namespace android
27 } // namespace device