OLD | NEW |
1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef CHROME_APP_ANDROID_CHROME_JNI_ONLOAD_H_ | 5 #ifndef CHROME_APP_ANDROID_CHROME_JNI_ONLOAD_H_ |
6 #define CHROME_APP_ANDROID_CHROME_JNI_ONLOAD_H_ | 6 #define CHROME_APP_ANDROID_CHROME_JNI_ONLOAD_H_ |
7 | 7 |
8 #include "base/android/base_jni_onload.h" | 8 #include "base/android/base_jni_onload.h" |
9 | 9 |
10 namespace android { | 10 namespace android { |
11 | 11 |
12 bool OnJNIOnLoadRegisterJNI( | 12 bool OnJNIOnLoadRegisterJNI(JNIEnv* env); |
13 JavaVM* vm, | |
14 base::android::RegisterCallback callback); | |
15 | 13 |
16 bool OnJNIOnLoadInit(base::android::InitCallback callback); | 14 bool OnJNIOnLoadInit(); |
17 | 15 |
18 } // namespace android | 16 } // namespace android |
19 | 17 |
20 #endif // CHROME_APP_ANDROID_CHROME_JNI_ONLOAD_H_ | 18 #endif // CHROME_APP_ANDROID_CHROME_JNI_ONLOAD_H_ |
OLD | NEW |