Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(70)

Side by Side Diff: trunk/src/base/android/jni_generator/testInnerClassNativesBothInnerAndOuter.golden

Issue 492713002: Revert 290810 "Make class lookup lazy in jni_generator when usin..." (Closed) Base URL: svn://svn.chromium.org/chrome/
Patch Set: Created 6 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 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 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
28 // Leaking this jclass as we cannot use LazyInstance from some threads. 24 // Leaking this jclass as we cannot use LazyInstance from some threads.
29 jclass g_TestJni_clazz = NULL; 25 jclass g_TestJni_clazz = NULL;
30 jclass TestJni_clazz(JNIEnv*) { return g_TestJni_clazz; }
31 #if __clang__
32 #pragma clang diagnostic pop
33 #endif
34 26
35 } // namespace 27 } // namespace
36 28
37 static jint Init(JNIEnv* env, jobject jcaller); 29 static jint Init(JNIEnv* env, jobject jcaller);
38 30
39 static jint Init(JNIEnv* env, jobject jcaller); 31 static jint Init(JNIEnv* env, jobject jcaller);
40 32
41 // Step 2: method stubs. 33 // Step 2: method stubs.
42 34
43 // Step 3: RegisterNatives. 35 // Step 3: RegisterNatives.
(...skipping 12 matching lines...) Expand all
56 "I", reinterpret_cast<void*>(Init) }, 48 "I", reinterpret_cast<void*>(Init) },
57 }; 49 };
58 50
59 static bool RegisterNativesImpl(JNIEnv* env) { 51 static bool RegisterNativesImpl(JNIEnv* env) {
60 g_TestJni_clazz = reinterpret_cast<jclass>(env->NewGlobalRef( 52 g_TestJni_clazz = reinterpret_cast<jclass>(env->NewGlobalRef(
61 base::android::GetClass(env, kTestJniClassPath).obj())); 53 base::android::GetClass(env, kTestJniClassPath).obj()));
62 54
63 const int kMethodsMyOtherInnerClassSize = 55 const int kMethodsMyOtherInnerClassSize =
64 arraysize(kMethodsMyOtherInnerClass); 56 arraysize(kMethodsMyOtherInnerClass);
65 57
66 if (env->RegisterNatives(MyOtherInnerClass_clazz(env), 58 if (env->RegisterNatives(g_MyOtherInnerClass_clazz,
67 kMethodsMyOtherInnerClass, 59 kMethodsMyOtherInnerClass,
68 kMethodsMyOtherInnerClassSize) < 0) { 60 kMethodsMyOtherInnerClassSize) < 0) {
69 jni_generator::HandleRegistrationError( 61 jni_generator::HandleRegistrationError(
70 env, MyOtherInnerClass_clazz(env), __FILE__); 62 env, g_MyOtherInnerClass_clazz, __FILE__);
71 return false; 63 return false;
72 } 64 }
73 65
74 const int kMethodsTestJniSize = arraysize(kMethodsTestJni); 66 const int kMethodsTestJniSize = arraysize(kMethodsTestJni);
75 67
76 if (env->RegisterNatives(TestJni_clazz(env), 68 if (env->RegisterNatives(g_TestJni_clazz,
77 kMethodsTestJni, 69 kMethodsTestJni,
78 kMethodsTestJniSize) < 0) { 70 kMethodsTestJniSize) < 0) {
79 jni_generator::HandleRegistrationError( 71 jni_generator::HandleRegistrationError(
80 env, TestJni_clazz(env), __FILE__); 72 env, g_TestJni_clazz, __FILE__);
81 return false; 73 return false;
82 } 74 }
83 75
84 return true; 76 return true;
85 } 77 }
86 78
87 #endif // org_chromium_TestJni_JNI 79 #endif // org_chromium_TestJni_JNI
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698