1234567891011121314151617181920212223 |
- #ifndef BASE_ANDROID_BASE_JNI_ONLOAD_H_
- #define BASE_ANDROID_BASE_JNI_ONLOAD_H_
- #include <jni.h>
- #include <vector>
- #include "base/base_export.h"
- #include "base/callback.h"
- namespace base {
- namespace android {
- BASE_EXPORT bool OnJNIOnLoadInit();
- }
- }
- #endif
|