12345678910111213141516171819202122232425262728 |
- #ifndef BASE_ANDROID_JNI_UTILS_H_
- #define BASE_ANDROID_JNI_UTILS_H_
- #include <jni.h>
- #include "base/android/scoped_java_ref.h"
- namespace base {
- namespace android {
- BASE_EXPORT ScopedJavaLocalRef<jobject> GetClassLoader(JNIEnv* env);
- BASE_EXPORT bool IsSelectiveJniRegistrationEnabled(JNIEnv* env);
- }
- }
- #endif
|