1 // Copyright (c) 2012 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 // This file is autogenerated by
6 // base/android/jni_generator/jni_generator.py
8 // org/chromium/TestJni
10 #ifndef org_chromium_TestJni_JNI
11 #define org_chromium_TestJni_JNI
15 #include "base/android/jni_generator/jni_generator_helper.h"
17 // Step 1: forward declarations.
19 const char kTestJniClassPath[] = "org/chromium/TestJni";
20 const char kMyInnerClassClassPath[] = "org/chromium/TestJni$MyInnerClass";
21 // Leaking this jclass as we cannot use LazyInstance from some threads.
22 jclass g_TestJni_clazz = NULL;
26 static jint Init(JNIEnv* env, jobject jcaller);
28 // Step 2: method stubs.
30 // Step 3: RegisterNatives.
32 static const JNINativeMethod kMethodsMyInnerClass[] = {
36 "I", reinterpret_cast<void*>(Init) },
39 static bool RegisterNativesImpl(JNIEnv* env) {
40 g_TestJni_clazz = reinterpret_cast<jclass>(env->NewGlobalRef(
41 base::android::GetClass(env, kTestJniClassPath).obj()));
43 const int kMethodsMyInnerClassSize = arraysize(kMethodsMyInnerClass);
45 if (env->RegisterNatives(g_MyInnerClass_clazz,
47 kMethodsMyInnerClassSize) < 0) {
48 jni_generator::HandleRegistrationError(
49 env, g_MyInnerClass_clazz, __FILE__);
56 #endif // org_chromium_TestJni_JNI