[SyncFS] Build indexes from FileTracker entries on disk.
[chromium-blink-merge.git] / base / android / jni_generator / testJarJarRemapping.golden
blob9b2c0b3fc67e31d6b12ddaca9d8052f948ade8b3
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
3 // found in the LICENSE file.
5 // This file is autogenerated by
6 //     base/android/jni_generator/jni_generator.py
7 // For
8 //     org/chromium/example/jni_generator/Example
10 #ifndef org_chromium_example_jni_generator_Example_JNI
11 #define org_chromium_example_jni_generator_Example_JNI
13 #include <jni.h>
15 #include "base/android/jni_generator/jni_generator_helper.h"
17 #include "base/android/jni_int_wrapper.h"
19 // Step 1: forward declarations.
20 namespace {
21 const char kExampleClassPath[] = "com/test/jni_generator/Example";
22 // Leaking this jclass as we cannot use LazyInstance from some threads.
23 jclass g_Example_clazz = NULL;
25 }  // namespace
27 static void Test(JNIEnv* env, jclass jcaller,
28     jobject t);
30 static void Test2(JNIEnv* env, jclass jcaller,
31     jobject t);
33 static void Test3(JNIEnv* env, jclass jcaller,
34     jobject t);
36 static void Test4(JNIEnv* env, jclass jcaller,
37     jobject t);
39 // Step 2: method stubs.
41 // Step 3: RegisterNatives.
43 static const JNINativeMethod kMethodsExample[] = {
44     { "nativeTest",
45 "("
46 "Lorg/test2/Test;"
47 ")"
48 "V", reinterpret_cast<void*>(Test) },
49     { "nativeTest2",
50 "("
51 "Lorg/chromium/example3/PrefixFoo;"
52 ")"
53 "V", reinterpret_cast<void*>(Test2) },
54     { "nativeTest3",
55 "("
56 "Lorg/test3/Test;"
57 ")"
58 "V", reinterpret_cast<void*>(Test3) },
59     { "nativeTest4",
60 "("
61 "Lorg/test3/TestBar$Inner;"
62 ")"
63 "V", reinterpret_cast<void*>(Test4) },
66 static bool RegisterNativesImpl(JNIEnv* env) {
67   g_Example_clazz = reinterpret_cast<jclass>(env->NewGlobalRef(
68       base::android::GetClass(env, kExampleClassPath).obj()));
70   const int kMethodsExampleSize = arraysize(kMethodsExample);
72   if (env->RegisterNatives(g_Example_clazz,
73                            kMethodsExample,
74                            kMethodsExampleSize) < 0) {
75     jni_generator::HandleRegistrationError(
76         env, g_Example_clazz, __FILE__);
77     return false;
78   }
80   return true;
83 #endif  // org_chromium_example_jni_generator_Example_JNI