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
3 // found in the LICENSE file.
5 #include "android_webview/lib/main/webview_jni_onload_delegate.h"
7 #include "android_webview/lib/main/aw_main_delegate.h"
8 #include "android_webview/native/android_webview_jni_registrar.h"
9 #include "base/android/jni_android.h"
10 #include "base/android/jni_registrar.h"
11 #include "base/android/jni_utils.h"
12 #include "components/navigation_interception/component_jni_registrar.h"
13 #include "components/web_contents_delegate_android/component_jni_registrar.h"
14 #include "content/public/app/content_jni_onload.h"
15 #include "content/public/app/content_main.h"
16 #include "url/url_util.h"
18 namespace android_webview
{
22 static base::android::RegistrationMethod
23 kWebViewDependencyRegisteredMethods
[] = {
24 { "NavigationInterception",
25 navigation_interception::RegisterNavigationInterceptionJni
},
26 { "WebContentsDelegateAndroid",
27 web_contents_delegate_android::RegisterWebContentsDelegateAndroidJni
},
32 bool WebViewJNIOnLoadDelegate::RegisterJNI(JNIEnv
* env
) {
33 // Register JNI for components we depend on.
34 if (!RegisterNativeMethods(
36 kWebViewDependencyRegisteredMethods
,
37 arraysize(kWebViewDependencyRegisteredMethods
)) ||
38 !android_webview::RegisterJni(env
)) {
44 bool WebViewJNIOnLoadDelegate::Init() {
45 JNIEnv
* env
= base::android::AttachCurrentThread();
46 base::android::InitReplacementClassLoader(env
,
47 base::android::GetClassLoader(env
));
49 content::SetContentMainDelegate(new android_webview::AwMainDelegate());
51 // Initialize url lib here while we are still single-threaded, in case we use
52 // CookieManager before initializing Chromium (which would normally have done
53 // this). It's safe to call this multiple times.
58 bool OnJNIOnLoad(JavaVM
* vm
) {
59 WebViewJNIOnLoadDelegate delegate
;
60 return content::android::OnJNIOnLoad(vm
, &delegate
);