| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 // This file is autogenerated by | 5 // This file is autogenerated by |
| 6 // base/android/jni_generator/jni_generator.py | 6 // base/android/jni_generator/jni_generator.py |
| 7 // For | 7 // For |
| 8 // org/chromium/TestJni | 8 // org/chromium/TestJni |
| 9 | 9 |
| 10 #ifndef org_chromium_TestJni_JNI | 10 #ifndef org_chromium_TestJni_JNI |
| 11 #define org_chromium_TestJni_JNI | 11 #define org_chromium_TestJni_JNI |
| 12 | 12 |
| 13 #include <jni.h> | 13 #include <jni.h> |
| 14 | 14 |
| 15 #include "base/android/jni_generator/jni_generator_helper.h" | 15 #include "base/android/jni_generator/jni_generator_helper.h" |
| 16 | 16 |
| 17 #include "base/android/jni_int_wrapper.h" | 17 #include "base/android/jni_int_wrapper.h" |
| 18 | 18 |
| 19 // Step 1: forward declarations. | 19 // Step 1: forward declarations. |
| 20 namespace { | 20 namespace { |
| 21 const char kMyOtherInnerClassClassPath[] = | 21 const char kMyOtherInnerClassClassPath[] = |
| 22 "org/chromium/TestJni$MyOtherInnerClass"; | 22 "org/chromium/TestJni$MyOtherInnerClass"; |
| 23 const char kTestJniClassPath[] = "org/chromium/TestJni"; | 23 const char kTestJniClassPath[] = "org/chromium/TestJni"; |
| 24 #if __clang__ |
| 25 #pragma clang diagnostic push |
| 26 #pragma clang diagnostic ignored "-Wunused-function" |
| 27 #endif |
| 24 // Leaking this jclass as we cannot use LazyInstance from some threads. | 28 // Leaking this jclass as we cannot use LazyInstance from some threads. |
| 25 jclass g_TestJni_clazz = NULL; | 29 jclass g_TestJni_clazz = NULL; |
| 30 jclass TestJni_clazz(JNIEnv*) { return g_TestJni_clazz; } |
| 31 #if __clang__ |
| 32 #pragma clang diagnostic pop |
| 33 #endif |
| 26 | 34 |
| 27 } // namespace | 35 } // namespace |
| 28 | 36 |
| 29 static jint Init(JNIEnv* env, jobject jcaller); | 37 static jint Init(JNIEnv* env, jobject jcaller); |
| 30 | 38 |
| 31 static jint Init(JNIEnv* env, jobject jcaller); | 39 static jint Init(JNIEnv* env, jobject jcaller); |
| 32 | 40 |
| 33 // Step 2: method stubs. | 41 // Step 2: method stubs. |
| 34 | 42 |
| 35 // Step 3: RegisterNatives. | 43 // Step 3: RegisterNatives. |
| (...skipping 12 matching lines...) Expand all Loading... |
| 48 "I", reinterpret_cast<void*>(Init) }, | 56 "I", reinterpret_cast<void*>(Init) }, |
| 49 }; | 57 }; |
| 50 | 58 |
| 51 static bool RegisterNativesImpl(JNIEnv* env) { | 59 static bool RegisterNativesImpl(JNIEnv* env) { |
| 52 g_TestJni_clazz = reinterpret_cast<jclass>(env->NewGlobalRef( | 60 g_TestJni_clazz = reinterpret_cast<jclass>(env->NewGlobalRef( |
| 53 base::android::GetClass(env, kTestJniClassPath).obj())); | 61 base::android::GetClass(env, kTestJniClassPath).obj())); |
| 54 | 62 |
| 55 const int kMethodsMyOtherInnerClassSize = | 63 const int kMethodsMyOtherInnerClassSize = |
| 56 arraysize(kMethodsMyOtherInnerClass); | 64 arraysize(kMethodsMyOtherInnerClass); |
| 57 | 65 |
| 58 if (env->RegisterNatives(g_MyOtherInnerClass_clazz, | 66 if (env->RegisterNatives(MyOtherInnerClass_clazz(env), |
| 59 kMethodsMyOtherInnerClass, | 67 kMethodsMyOtherInnerClass, |
| 60 kMethodsMyOtherInnerClassSize) < 0) { | 68 kMethodsMyOtherInnerClassSize) < 0) { |
| 61 jni_generator::HandleRegistrationError( | 69 jni_generator::HandleRegistrationError( |
| 62 env, g_MyOtherInnerClass_clazz, __FILE__); | 70 env, MyOtherInnerClass_clazz(env), __FILE__); |
| 63 return false; | 71 return false; |
| 64 } | 72 } |
| 65 | 73 |
| 66 const int kMethodsTestJniSize = arraysize(kMethodsTestJni); | 74 const int kMethodsTestJniSize = arraysize(kMethodsTestJni); |
| 67 | 75 |
| 68 if (env->RegisterNatives(g_TestJni_clazz, | 76 if (env->RegisterNatives(TestJni_clazz(env), |
| 69 kMethodsTestJni, | 77 kMethodsTestJni, |
| 70 kMethodsTestJniSize) < 0) { | 78 kMethodsTestJniSize) < 0) { |
| 71 jni_generator::HandleRegistrationError( | 79 jni_generator::HandleRegistrationError( |
| 72 env, g_TestJni_clazz, __FILE__); | 80 env, TestJni_clazz(env), __FILE__); |
| 73 return false; | 81 return false; |
| 74 } | 82 } |
| 75 | 83 |
| 76 return true; | 84 return true; |
| 77 } | 85 } |
| 78 | 86 |
| 79 #endif // org_chromium_TestJni_JNI | 87 #endif // org_chromium_TestJni_JNI |
| OLD | NEW |