OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "base/android/base_jni_onload.h" | 5 #include "base/android/base_jni_onload.h" |
6 #include "base/android/base_jni_registrar.h" | 6 #include "base/android/base_jni_registrar.h" |
7 #include "base/android/jni_android.h" | 7 #include "base/android/jni_android.h" |
8 #include "base/android/jni_registrar.h" | 8 #include "base/android/jni_registrar.h" |
9 #include "base/bind.h" | 9 #include "base/bind.h" |
10 #include "services/native_viewport/platform_viewport_android.h" | 10 #include "services/native_viewport/platform_viewport_android.h" |
11 #include "shell/android/android_handler.h" | 11 #include "shell/android/android_handler.h" |
12 #include "shell/android/intent_receiver_manager_impl.h" | 12 #include "shell/android/intent_receiver_manager_impl.h" |
13 #include "shell/android/keyboard_impl.h" | 13 #include "shell/android/keyboard_impl.h" |
14 #include "shell/android/main.h" | 14 #include "shell/android/main.h" |
15 | 15 |
16 namespace { | 16 namespace { |
17 | 17 |
18 base::android::RegistrationMethod kMojoRegisteredMethods[] = { | 18 base::android::RegistrationMethod kMojoRegisteredMethods[] = { |
19 {"AndroidHandler", mojo::shell::RegisterAndroidHandlerJni}, | 19 {"AndroidHandler", shell::RegisterAndroidHandlerJni}, |
20 {"IntentReceiverRegistry", mojo::shell::RegisterIntentReceiverRegistry}, | 20 {"IntentReceiverRegistry", shell::RegisterIntentReceiverRegistry}, |
21 {"Keyboard", mojo::shell::RegisterKeyboardJni}, | 21 {"Keyboard", shell::RegisterKeyboardJni}, |
22 {"PlatformViewportAndroid", | 22 {"PlatformViewportAndroid", |
23 native_viewport::PlatformViewportAndroid::Register}, | 23 native_viewport::PlatformViewportAndroid::Register}, |
24 {"ShellMain", mojo::shell::RegisterShellMain}, | 24 {"ShellMain", shell::RegisterShellMain}, |
25 }; | 25 }; |
26 | 26 |
27 bool RegisterJNI(JNIEnv* env) { | 27 bool RegisterJNI(JNIEnv* env) { |
28 if (!base::android::RegisterJni(env)) | 28 if (!base::android::RegisterJni(env)) |
29 return false; | 29 return false; |
30 | 30 |
31 return RegisterNativeMethods(env, kMojoRegisteredMethods, | 31 return RegisterNativeMethods(env, kMojoRegisteredMethods, |
32 arraysize(kMojoRegisteredMethods)); | 32 arraysize(kMojoRegisteredMethods)); |
33 } | 33 } |
34 | 34 |
35 } // namespace | 35 } // namespace |
36 | 36 |
37 // This is called by the VM when the shared library is first loaded. | 37 // This is called by the VM when the shared library is first loaded. |
38 JNI_EXPORT jint JNI_OnLoad(JavaVM* vm, void* reserved) { | 38 JNI_EXPORT jint JNI_OnLoad(JavaVM* vm, void* reserved) { |
39 std::vector<base::android::RegisterCallback> register_callbacks; | 39 std::vector<base::android::RegisterCallback> register_callbacks; |
40 register_callbacks.push_back(base::Bind(&RegisterJNI)); | 40 register_callbacks.push_back(base::Bind(&RegisterJNI)); |
41 if (!base::android::OnJNIOnLoadRegisterJNI(vm, register_callbacks) || | 41 if (!base::android::OnJNIOnLoadRegisterJNI(vm, register_callbacks) || |
42 !base::android::OnJNIOnLoadInit( | 42 !base::android::OnJNIOnLoadInit( |
43 std::vector<base::android::InitCallback>())) { | 43 std::vector<base::android::InitCallback>())) { |
44 return -1; | 44 return -1; |
45 } | 45 } |
46 | 46 |
47 return JNI_VERSION_1_4; | 47 return JNI_VERSION_1_4; |
48 } | 48 } |
OLD | NEW |