1 // Copyright 2015 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 #include "base/android/base_jni_onload.h" 6 7 #include "base/android/jni_android.h" 8 #include "base/android/jni_utils.h" 9 #include "base/android/library_loader/library_loader_hooks.h" 10 #include "base/functional/bind.h" 11 12 namespace base { 13 namespace android { 14 OnJNIOnLoadInit()15bool OnJNIOnLoadInit() { 16 InitAtExitManager(); 17 return true; 18 } 19 20 } // namespace android 21 } // namespace base 22