blob: 630791080c6591a4759cf99f9721bc4d32aa59e6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef ANDROID_WEBVIEW_LIB_MAIN_JNI_ONLOAD_DELEGATE_H_
#define ANDROID_WEBVIEW_LIB_MAIN_JNI_ONLOAD_DELEGATE_H_
#include "base/android/jni_onload_delegate.h"
namespace android_webview {
class WebViewJNIOnLoadDelegate : public base::android::JNIOnLoadDelegate {
public:
bool RegisterJNI(JNIEnv* env) override;
bool Init() override;
};
bool OnJNIOnLoad(JavaVM* vm);
} // android_webview
#endif // ANDROID_WEBVIEW_LIB_MAIN_JNI_ONLOAD_DELEGATE_H_
|