blob: 5d7cc0ad21a83b8b75fc6361346294da05a22576 [file] [log] [blame]
michaelbai34185242015-01-29 06:40:36 +09001// Copyright 2015 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#ifndef BASE_ANDROID_BASE_JNI_ONLOAD_H_
6#define BASE_ANDROID_BASE_JNI_ONLOAD_H_
7
8#include <jni.h>
9#include <vector>
10
11#include "base/base_export.h"
michaelbaib608d502015-02-21 10:29:40 +090012#include "base/callback.h"
michaelbai34185242015-01-29 06:40:36 +090013
14namespace base {
15namespace android {
16
tobiasjsfab838a2017-02-08 20:09:50 +090017// Returns whether initialization succeeded.
18BASE_EXPORT bool OnJNIOnLoadInit();
michaelbai34185242015-01-29 06:40:36 +090019
20} // namespace android
21} // namespace base
22
23#endif // BASE_ANDROID_BASE_JNI_ONLOAD_H_