Index: base/android/jni_generator/testPureNativeMethodsOption.golden |
diff --git a/base/android/jni_generator/testPureNativeMethodsOption.golden b/base/android/jni_generator/testPureNativeMethodsOption.golden |
index ad63cca6269d3460780faf98f7109339f796440e..52e03ccd2bae5204ee77d5be1dfff06915733436 100644 |
--- a/base/android/jni_generator/testPureNativeMethodsOption.golden |
+++ b/base/android/jni_generator/testPureNativeMethodsOption.golden |
@@ -26,7 +26,9 @@ jclass g_Test_clazz = NULL; |
} // namespace |
// Step 2: method stubs. |
-static jlong Method(JNIEnv* env, jobject jcaller, |
+static jlong Java_org_chromium_example_jni_1generator_Test_nativeMethod(JNIEnv* |
+ env, |
+ jobject jcaller, |
jlong nativeTest, |
jint arg1) { |
Test* native = reinterpret_cast<Test*>(nativeTest); |
@@ -42,7 +44,9 @@ static const JNINativeMethod kMethodsTest[] = { |
"J" |
"I" |
")" |
-"J", reinterpret_cast<void*>(Method) }, |
+"J", |
+ reinterpret_cast<void*>(Java_org_chromium_example_jni_1generator_Test_nativeMethod) |
+ }, |
}; |
static bool RegisterNativesImpl(JNIEnv* env) { |