blob: b0dd98cd65028c783ff67fb85f9300b051bf439d [file] [log] [blame]
// Copyright 2013 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "base/android/base_jni_onload.h"
#include "base/android/base_jni_registrar.h"
#include "base/android/jni_android.h"
#include "base/android/jni_registrar.h"
#include "base/bind.h"
#include "mojo/runner/android/android_handler.h"
#include "mojo/runner/android/main.h"
#include "ui/platform_window/android/platform_ime_controller_android.h"
#include "ui/platform_window/android/platform_window_android.h"
namespace {
base::android::RegistrationMethod kMojoRegisteredMethods[] = {
{"AndroidHandler", mojo::runner::RegisterAndroidHandlerJni},
{"PlatformImeControllerAndroid",
ui::PlatformImeControllerAndroid::Register},
{"PlatformWindowAndroid", ui::PlatformWindowAndroid::Register},
{"ShellMain", mojo::runner::RegisterShellMain},
};
bool RegisterJNI(JNIEnv* env) {
if (!base::android::RegisterJni(env))
return false;
return RegisterNativeMethods(env, kMojoRegisteredMethods,
arraysize(kMojoRegisteredMethods));
}
} // namespace
// This is called by the VM when the shared library is first loaded.
JNI_EXPORT jint JNI_OnLoad(JavaVM* vm, void* reserved) {
std::vector<base::android::RegisterCallback> register_callbacks;
register_callbacks.push_back(base::Bind(&RegisterJNI));
if (!base::android::OnJNIOnLoadRegisterJNI(vm, register_callbacks) ||
!base::android::OnJNIOnLoadInit(
std::vector<base::android::InitCallback>())) {
return -1;
}
return JNI_VERSION_1_4;
}