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

Side by Side Diff: base/android/jni_generator/testMultipleJNIAdditionalImport.golden

Issue 1279163006: jni_generator: Wrap all native methods in stubs. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 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
OLDNEW
1 // Copyright 2014 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/foo/Foo 8 // org/chromium/foo/Foo
9 9
10 #ifndef org_chromium_foo_Foo_JNI 10 #ifndef org_chromium_foo_Foo_JNI
(...skipping 11 matching lines...) Expand all
22 // Leaking this jclass as we cannot use LazyInstance from some threads. 22 // Leaking this jclass as we cannot use LazyInstance from some threads.
23 jclass g_Foo_clazz = NULL; 23 jclass g_Foo_clazz = NULL;
24 #define Foo_clazz(env) g_Foo_clazz 24 #define Foo_clazz(env) g_Foo_clazz
25 25
26 } // namespace 26 } // namespace
27 27
28 static void DoSomething(JNIEnv* env, jclass jcaller, 28 static void DoSomething(JNIEnv* env, jclass jcaller,
29 jobject callback1, 29 jobject callback1,
30 jobject callback2); 30 jobject callback2);
31 31
32 static void Java_org_chromium_foo_Foo_nativeDoSomething(JNIEnv* env, jclass
33 jcaller,
34 jobject callback1,
35 jobject callback2) {
36 return DoSomething(env, jcaller, callback1, callback2);
37 }
38
32 // Step 2: method stubs. 39 // Step 2: method stubs.
33 40
34 static base::subtle::AtomicWord g_Foo_calledByNative = 0; 41 static base::subtle::AtomicWord g_Foo_calledByNative = 0;
35 static void Java_Foo_calledByNative(JNIEnv* env, jobject callback1, 42 static void Java_Foo_calledByNative(JNIEnv* env, jobject callback1,
36 jobject callback2) { 43 jobject callback2) {
37 /* Must call RegisterNativesImpl() */ 44 /* Must call RegisterNativesImpl() */
38 CHECK_CLAZZ(env, Foo_clazz(env), 45 CHECK_CLAZZ(env, Foo_clazz(env),
39 Foo_clazz(env)); 46 Foo_clazz(env));
40 jmethodID method_id = 47 jmethodID method_id =
41 base::android::MethodID::LazyGet< 48 base::android::MethodID::LazyGet<
(...skipping 15 matching lines...) Expand all
57 } 64 }
58 65
59 // Step 3: RegisterNatives. 66 // Step 3: RegisterNatives.
60 67
61 static const JNINativeMethod kMethodsFoo[] = { 68 static const JNINativeMethod kMethodsFoo[] = {
62 { "nativeDoSomething", 69 { "nativeDoSomething",
63 "(" 70 "("
64 "Lorg/chromium/foo/Bar1$Callback;" 71 "Lorg/chromium/foo/Bar1$Callback;"
65 "Lorg/chromium/foo/Bar2$Callback;" 72 "Lorg/chromium/foo/Bar2$Callback;"
66 ")" 73 ")"
67 "V", reinterpret_cast<void*>(DoSomething) }, 74 "V", reinterpret_cast<void*>(Java_org_chromium_foo_Foo_nativeDoSomething) },
68 }; 75 };
69 76
70 static bool RegisterNativesImpl(JNIEnv* env) { 77 static bool RegisterNativesImpl(JNIEnv* env) {
71 78
72 g_Foo_clazz = reinterpret_cast<jclass>(env->NewGlobalRef( 79 g_Foo_clazz = reinterpret_cast<jclass>(env->NewGlobalRef(
73 base::android::GetClass(env, kFooClassPath).obj())); 80 base::android::GetClass(env, kFooClassPath).obj()));
74 81
75 const int kMethodsFooSize = arraysize(kMethodsFoo); 82 const int kMethodsFooSize = arraysize(kMethodsFoo);
76 83
77 if (env->RegisterNatives(Foo_clazz(env), 84 if (env->RegisterNatives(Foo_clazz(env),
78 kMethodsFoo, 85 kMethodsFoo,
79 kMethodsFooSize) < 0) { 86 kMethodsFooSize) < 0) {
80 jni_generator::HandleRegistrationError( 87 jni_generator::HandleRegistrationError(
81 env, Foo_clazz(env), __FILE__); 88 env, Foo_clazz(env), __FILE__);
82 return false; 89 return false;
83 } 90 }
84 91
85 return true; 92 return true;
86 } 93 }
87 94
88 #endif // org_chromium_foo_Foo_JNI 95 #endif // org_chromium_foo_Foo_JNI
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698