OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 #include "android_webview/lib/main/aw_main_delegate.h" | 5 #include "android_webview/lib/main/aw_main_delegate.h" |
6 #include "android_webview/native/android_webview_jni_registrar.h" | 6 #include "android_webview/native/android_webview_jni_registrar.h" |
7 #include "base/android/jni_android.h" | 7 #include "base/android/jni_android.h" |
8 #include "base/android/jni_registrar.h" | 8 #include "base/android/jni_registrar.h" |
9 #include "base/android/library_loader/library_loader_hooks.h" | 9 #include "base/android/library_loader/library_loader_hooks.h" |
10 #include "components/navigation_interception/component_jni_registrar.h" | 10 #include "components/navigation_interception/component_jni_registrar.h" |
(...skipping 29 matching lines...) Expand all Loading... |
40 // Register JNI for components we depend on. | 40 // Register JNI for components we depend on. |
41 if (!RegisterNativeMethods( | 41 if (!RegisterNativeMethods( |
42 env, | 42 env, |
43 kWebViewDependencyRegisteredMethods, | 43 kWebViewDependencyRegisteredMethods, |
44 arraysize(kWebViewDependencyRegisteredMethods))) | 44 arraysize(kWebViewDependencyRegisteredMethods))) |
45 return -1; | 45 return -1; |
46 | 46 |
47 if (!android_webview::RegisterJni(env)) | 47 if (!android_webview::RegisterJni(env)) |
48 return -1; | 48 return -1; |
49 | 49 |
| 50 base::android::InitFallbackClassLoader(env); |
| 51 |
50 content::SetContentMainDelegate(new android_webview::AwMainDelegate()); | 52 content::SetContentMainDelegate(new android_webview::AwMainDelegate()); |
51 | 53 |
52 // Initialize url lib here while we are still single-threaded, in case we use | 54 // Initialize url lib here while we are still single-threaded, in case we use |
53 // CookieManager before initializing Chromium (which would normally have done | 55 // CookieManager before initializing Chromium (which would normally have done |
54 // this). It's safe to call this multiple times. | 56 // this). It's safe to call this multiple times. |
55 url::Initialize(); | 57 url::Initialize(); |
56 | 58 |
57 return JNI_VERSION_1_4; | 59 return JNI_VERSION_1_4; |
58 } | 60 } |
OLD | NEW |