Home | History | Annotate | Download | only in jni_generator
      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
      3 // found in the LICENSE file.
      4 
      5 // This file is autogenerated by
      6 //     base/android/jni_generator/jni_generator.py
      7 // For
      8 //     org/chromium/TestJni
      9 
     10 #ifndef org_chromium_TestJni_JNI
     11 #define org_chromium_TestJni_JNI
     12 
     13 #include <jni.h>
     14 
     15 #include "base/android/jni_android.h"
     16 #include "base/android/scoped_java_ref.h"
     17 #include "base/basictypes.h"
     18 #include "base/logging.h"
     19 
     20 using base::android::ScopedJavaLocalRef;
     21 
     22 // Step 1: forward declarations.
     23 namespace {
     24 const char kTestJniClassPath[] = "org/chromium/TestJni";
     25 const char kMyInnerClassClassPath[] = "org/chromium/TestJni$MyInnerClass";
     26 // Leaking this jclass as we cannot use LazyInstance from some threads.
     27 jclass g_TestJni_clazz = NULL;
     28 }  // namespace
     29 
     30 static jint Init(JNIEnv* env, jobject obj);
     31 
     32 // Step 2: method stubs.
     33 
     34 // Step 3: RegisterNatives.
     35 
     36 static bool RegisterNativesImpl(JNIEnv* env) {
     37 
     38   g_TestJni_clazz = reinterpret_cast<jclass>(env->NewGlobalRef(
     39       base::android::GetClass(env, kTestJniClassPath).obj()));
     40   static const JNINativeMethod kMethodsMyInnerClass[] = {
     41     { "nativeInit",
     42 "("
     43 ")"
     44 "I", reinterpret_cast<void*>(Init) },
     45   };
     46   const int kMethodsMyInnerClassSize = arraysize(kMethodsMyInnerClass);
     47 
     48   if (env->RegisterNatives(g_MyInnerClass_clazz,
     49                            kMethodsMyInnerClass,
     50                            kMethodsMyInnerClassSize) < 0) {
     51     LOG(ERROR) << "RegisterNatives failed in " << __FILE__;
     52     return false;
     53   }
     54 
     55   return true;
     56 }
     57 
     58 #endif  // org_chromium_TestJni_JNI
     59