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

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

Issue 1312153003: jni_generator: Pass object parameters as JavaParamRef. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 5 years, 3 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/TestJni 8 // org/chromium/TestJni
9 9
10 #ifndef org_chromium_TestJni_JNI 10 #ifndef org_chromium_TestJni_JNI
(...skipping 11 matching lines...) Expand all
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 // Leaking this jclass as we cannot use LazyInstance from some threads. 24 // Leaking this jclass as we cannot use LazyInstance from some threads.
25 jclass g_TestJni_clazz = NULL; 25 jclass g_TestJni_clazz = NULL;
26 #define TestJni_clazz(env) g_TestJni_clazz 26 #define TestJni_clazz(env) g_TestJni_clazz
27 27
28 } // namespace 28 } // namespace
29 29
30 // Step 2: method stubs. 30 // Step 2: method stubs.
31 31
32 static jint Init(JNIEnv* env, jobject jcaller); 32 static jint Init(JNIEnv* env, const JavaParamRef<jobject>& jcaller);
33 33
34 static jint Java_org_chromium_TestJni_nativeInit(JNIEnv* env, jobject jcaller) { 34 static jint Java_org_chromium_TestJni_nativeInit(JNIEnv* env, jobject jcaller) {
35 return Init(env, jcaller); 35 return Init(env, JavaParamRef<jobject>(env, jcaller));
36 } 36 }
37 37
38 static jint Init(JNIEnv* env, jobject jcaller); 38 static jint Init(JNIEnv* env, const JavaParamRef<jobject>& jcaller);
39 39
40 static jint Java_org_chromium_TestJni_00024MyOtherInnerClass_nativeInit(JNIEnv* 40 static jint Java_org_chromium_TestJni_00024MyOtherInnerClass_nativeInit(JNIEnv*
41 env, jobject jcaller) { 41 env, jobject jcaller) {
42 return Init(env, jcaller); 42 return Init(env, JavaParamRef<jobject>(env, jcaller));
43 } 43 }
44 44
45 // Step 3: RegisterNatives. 45 // Step 3: RegisterNatives.
46 46
47 static const JNINativeMethod kMethodsMyOtherInnerClass[] = { 47 static const JNINativeMethod kMethodsMyOtherInnerClass[] = {
48 { "nativeInit", 48 { "nativeInit",
49 "(" 49 "("
50 ")" 50 ")"
51 "I", 51 "I",
52 reinterpret_cast<void*>(Java_org_chromium_TestJni_00024MyOtherInnerClass_nat iveInit) 52 reinterpret_cast<void*>(Java_org_chromium_TestJni_00024MyOtherInnerClass_nat iveInit)
(...skipping 30 matching lines...) Expand all
83 kMethodsTestJniSize) < 0) { 83 kMethodsTestJniSize) < 0) {
84 jni_generator::HandleRegistrationError( 84 jni_generator::HandleRegistrationError(
85 env, TestJni_clazz(env), __FILE__); 85 env, TestJni_clazz(env), __FILE__);
86 return false; 86 return false;
87 } 87 }
88 88
89 return true; 89 return true;
90 } 90 }
91 91
92 #endif // org_chromium_TestJni_JNI 92 #endif // org_chromium_TestJni_JNI
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698