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

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

Issue 147533004: Remove unneeded JNI registrations. (Closed) Base URL: https://git.chromium.org/chromium/src.git@master
Patch Set: Fix android webview build issues. Created 6 years, 8 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 (c) 2012 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 // Step 1: forward declarations. 17 // Step 1: forward declarations.
18 namespace { 18 namespace {
19 const char kTestJniClassPath[] = "org/chromium/TestJni";
20 const char kMyInnerClassClassPath[] = "org/chromium/TestJni$MyInnerClass";
21 // Leaking this jclass as we cannot use LazyInstance from some threads.
22 jclass g_TestJni_clazz = NULL;
23 19
24 } // namespace 20 } // namespace
25 21
22 extern "C"{
23
26 static jint Init(JNIEnv* env, jobject jcaller); 24 static jint Init(JNIEnv* env, jobject jcaller);
25 __attribute__((alias("Init"), visibility("default"))) jint
26 Java_org_chromium_TestJni_00024MyInnerClass_nativeInit(JNIEnv* env, jobject
27 jcaller);
27 28
28 // Step 2: method stubs. 29 // Step 2: method stubs.
29 30
31 };
32
30 // Step 3: RegisterNatives. 33 // Step 3: RegisterNatives.
31 34
32 static const JNINativeMethod kMethodsMyInnerClass[] = {
33 { "nativeInit",
34 "("
35 ")"
36 "I", reinterpret_cast<void*>(Init) },
37 };
38
39 static bool RegisterNativesImpl(JNIEnv* env) {
40 g_TestJni_clazz = reinterpret_cast<jclass>(env->NewGlobalRef(
41 base::android::GetClass(env, kTestJniClassPath).obj()));
42
43 const int kMethodsMyInnerClassSize = arraysize(kMethodsMyInnerClass);
44
45 if (env->RegisterNatives(g_MyInnerClass_clazz,
46 kMethodsMyInnerClass,
47 kMethodsMyInnerClassSize) < 0) {
48 jni_generator::HandleRegistrationError(
49 env, g_MyInnerClass_clazz, __FILE__);
50 return false;
51 }
52
53 return true;
54 }
55
56 #endif // org_chromium_TestJni_JNI 35 #endif // org_chromium_TestJni_JNI
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698