| OLD | NEW |
| (Empty) |
| 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. | |
| 4 | |
| 5 #include <vector> | |
| 6 | |
| 7 #include "base/android/base_jni_onload.h" | |
| 8 #include "base/android/jni_android.h" | |
| 9 #include "base/android/library_loader/library_loader_hooks.h" | |
| 10 #include "base/bind.h" | |
| 11 #include "components/html_viewer/jni/Main_jni.h" | |
| 12 | |
| 13 namespace { | |
| 14 bool RegisterJNI(JNIEnv* env) { | |
| 15 return true; | |
| 16 } | |
| 17 | |
| 18 bool Init() { | |
| 19 Java_Main_init(base::android::AttachCurrentThread(), | |
| 20 base::android::GetApplicationContext()); | |
| 21 return true; | |
| 22 } | |
| 23 } // namespace | |
| 24 | |
| 25 // This is called by the VM when the shared library is first loaded. | |
| 26 JNI_EXPORT jint JNI_OnLoad(JavaVM* vm, void* reserved) { | |
| 27 std::vector<base::android::RegisterCallback> register_callbacks; | |
| 28 register_callbacks.push_back(base::Bind(&RegisterJNI)); | |
| 29 register_callbacks.push_back(base::Bind(&RegisterNativesImpl)); | |
| 30 | |
| 31 std::vector<base::android::InitCallback> init_callbacks; | |
| 32 init_callbacks.push_back(base::Bind(&Init)); | |
| 33 | |
| 34 if (!base::android::OnJNIOnLoadRegisterJNI(vm, register_callbacks) || | |
| 35 !base::android::OnJNIOnLoadInit(init_callbacks)) { | |
| 36 return -1; | |
| 37 } | |
| 38 | |
| 39 // There cannot be two AtExitManagers at the same time. Remove the one from | |
| 40 // LibraryLoader as ApplicationRunnerChromium also uses one. | |
| 41 base::android::LibraryLoaderExitHook(); | |
| 42 | |
| 43 return JNI_VERSION_1_4; | |
| 44 } | |
| 45 | |
| 46 extern "C" JNI_EXPORT void InitApplicationContext( | |
| 47 const base::android::JavaRef<jobject>& context) { | |
| 48 JNIEnv* env = base::android::AttachCurrentThread(); | |
| 49 base::android::InitApplicationContext(env, context); | |
| 50 } | |
| OLD | NEW |