summaryrefslogtreecommitdiffstats
path: root/chromium/base/android/jni_generator/sample_entry_point.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/base/android/jni_generator/sample_entry_point.cc')
-rw-r--r--chromium/base/android/jni_generator/sample_entry_point.cc27
1 files changed, 27 insertions, 0 deletions
diff --git a/chromium/base/android/jni_generator/sample_entry_point.cc b/chromium/base/android/jni_generator/sample_entry_point.cc
new file mode 100644
index 00000000000..5a7eb48b711
--- /dev/null
+++ b/chromium/base/android/jni_generator/sample_entry_point.cc
@@ -0,0 +1,27 @@
+// Copyright 2017 The Chromium Authors
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include "base/android/jni_android.h"
+#include "base/android/jni_generator/jni_registration_generated.h"
+#include "base/android/jni_utils.h"
+
+// This is called by the VM when the shared library is first loaded.
+JNI_EXPORT jint JNI_OnLoad(JavaVM* vm, void* reserved) {
+ // By default, all JNI methods are registered. However, since render processes
+ // don't need very much Java code, we enable selective JNI registration on the
+ // Java side and only register a subset of JNI methods.
+ base::android::InitVM(vm);
+ JNIEnv* env = base::android::AttachCurrentThread();
+
+ if (!base::android::IsSelectiveJniRegistrationEnabled(env)) {
+ if (!RegisterNonMainDexNatives(env)) {
+ return -1;
+ }
+ }
+
+ if (!RegisterMainDexNatives(env)) {
+ return -1;
+ }
+ return JNI_VERSION_1_4;
+}