Home | History | Annotate | Download | only in android
      1 // Copyright 2014 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.
      4 
      5 #include "base/android/jni_utils.h"
      6 
      7 #include "base/android/scoped_java_ref.h"
      8 
      9 #include "jni/JNIUtils_jni.h"
     10 
     11 namespace base {
     12 namespace android {
     13 
     14 ScopedJavaLocalRef<jobject> GetClassLoader(JNIEnv* env) {
     15   return Java_JNIUtils_getClassLoader(env);
     16 }
     17 
     18 bool isSelectiveJniRegistrationEnabled(JNIEnv* env) {
     19   return Java_JNIUtils_isSelectiveJniRegistrationEnabled(env);
     20 }
     21 
     22 }  // namespace android
     23 }  // namespace base
     24 
     25