Index: content/public/app/content_jni_onload.h |
diff --git a/content/public/app/content_jni_onload.h b/content/public/app/content_jni_onload.h |
index de2de3abbc8648fd2f205f7578aef3976ab395ab..02261eb33a31a10bbb17993704611d9ec840cce1 100644 |
--- a/content/public/app/content_jni_onload.h |
+++ b/content/public/app/content_jni_onload.h |
@@ -20,12 +20,16 @@ class JNIOnLoadDelegate; |
namespace content { |
namespace android { |
-// Returns true if JNI registration and initialization succeeded. Refer to |
-// JNIOnLoadDelegate for more information. |
-CONTENT_EXPORT bool OnJNIOnLoad( |
+// Returns true if JNI registration succeeded. Refer to JNIOnLoadDelegate for |
+// more information. |
+CONTENT_EXPORT bool OnJNIOnLoadRegisterJNI( |
JavaVM* vm, |
base::android::JNIOnLoadDelegate* delegate); |
+// Returns true if initialization succeeded. Refer to JNIOnLoadDelegate for |
+// more information. |
+CONTENT_EXPORT bool OnJNIOnLoadInit(base::android::JNIOnLoadDelegate* delegate); |
+ |
} // namespace android |
} // namespace content |