1 // Copyright 2014 The Chromium Authors 2 // Use of this source code is governed by a BSD-style license that can be 3 // found in the LICENSE file. 4 5 #ifndef BASE_ANDROID_JNI_WEAK_REF_H_ 6 #define BASE_ANDROID_JNI_WEAK_REF_H_ 7 8 #include "base/android/scoped_java_ref.h" 9 #include "third_party/jni_zero/jni_zero.h" 10 11 using JavaObjectWeakGlobalRef = jni_zero::ScopedJavaGlobalWeakRef; 12 13 #endif // BASE_ANDROID_JNI_WEAK_REF_H_ 14