blob: 5f989033a47787cec5ca7668dc80e18a3c31a07e [file] [log] [blame]
Avi Drissmane4622aa2022-09-08 20:36:061// Copyright 2015 The Chromium Authors
michaelbai842c972d2015-01-28 21:40:362// 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_BASE_JNI_ONLOAD_H_
6#define BASE_ANDROID_BASE_JNI_ONLOAD_H_
7
8#include <jni.h>
michaelbai842c972d2015-01-28 21:40:369
10#include "base/base_export.h"
Avi Drissman63e1f992023-01-13 18:54:4311#include "base/functional/callback.h"
michaelbai842c972d2015-01-28 21:40:3612
13namespace base {
14namespace android {
15
tobiasjsb9e287e2017-02-08 11:09:5016// Returns whether initialization succeeded.
17BASE_EXPORT bool OnJNIOnLoadInit();
michaelbai842c972d2015-01-28 21:40:3618
19} // namespace android
20} // namespace base
21
22#endif // BASE_ANDROID_BASE_JNI_ONLOAD_H_