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/native/android_webview_jni_registrar.h" | 5 #include "android_webview/native/android_webview_jni_registrar.h" |
6 | 6 |
7 #include "android_webview/native/android_protocol_handler.h" | 7 #include "android_webview/native/android_protocol_handler.h" |
| 8 #include "android_webview/native/aw_assets.h" |
8 #include "android_webview/native/aw_autofill_client.h" | 9 #include "android_webview/native/aw_autofill_client.h" |
9 #include "android_webview/native/aw_contents.h" | 10 #include "android_webview/native/aw_contents.h" |
10 #include "android_webview/native/aw_contents_client_bridge.h" | 11 #include "android_webview/native/aw_contents_client_bridge.h" |
11 #include "android_webview/native/aw_contents_io_thread_client_impl.h" | 12 #include "android_webview/native/aw_contents_io_thread_client_impl.h" |
12 #include "android_webview/native/aw_contents_statics.h" | 13 #include "android_webview/native/aw_contents_statics.h" |
13 #include "android_webview/native/aw_dev_tools_server.h" | 14 #include "android_webview/native/aw_dev_tools_server.h" |
14 #include "android_webview/native/aw_form_database.h" | 15 #include "android_webview/native/aw_form_database.h" |
15 #include "android_webview/native/aw_http_auth_handler.h" | 16 #include "android_webview/native/aw_http_auth_handler.h" |
16 #include "android_webview/native/aw_pdf_exporter.h" | 17 #include "android_webview/native/aw_pdf_exporter.h" |
17 #include "android_webview/native/aw_picture.h" | 18 #include "android_webview/native/aw_picture.h" |
(...skipping 10 matching lines...) Expand all Loading... |
28 #include "base/android/jni_android.h" | 29 #include "base/android/jni_android.h" |
29 #include "base/android/jni_registrar.h" | 30 #include "base/android/jni_registrar.h" |
30 #include "base/debug/trace_event.h" | 31 #include "base/debug/trace_event.h" |
31 | 32 |
32 namespace android_webview { | 33 namespace android_webview { |
33 | 34 |
34 static base::android::RegistrationMethod kWebViewRegisteredMethods[] = { | 35 static base::android::RegistrationMethod kWebViewRegisteredMethods[] = { |
35 // Register JNI for android_webview classes. | 36 // Register JNI for android_webview classes. |
36 { "AndroidProtocolHandler", RegisterAndroidProtocolHandler }, | 37 { "AndroidProtocolHandler", RegisterAndroidProtocolHandler }, |
37 { "AwAutofillClient", RegisterAwAutofillClient }, | 38 { "AwAutofillClient", RegisterAwAutofillClient }, |
| 39 { "AwAssets", RegisterAwAssets }, |
38 { "AwContents", RegisterAwContents }, | 40 { "AwContents", RegisterAwContents }, |
39 { "AwContentsClientBridge", RegisterAwContentsClientBridge }, | 41 { "AwContentsClientBridge", RegisterAwContentsClientBridge }, |
40 { "AwContentsIoThreadClientImpl", RegisterAwContentsIoThreadClientImpl }, | 42 { "AwContentsIoThreadClientImpl", RegisterAwContentsIoThreadClientImpl }, |
41 { "AwContentsStatics", RegisterAwContentsStatics }, | 43 { "AwContentsStatics", RegisterAwContentsStatics }, |
42 { "AwDevToolsServer", RegisterAwDevToolsServer }, | 44 { "AwDevToolsServer", RegisterAwDevToolsServer }, |
43 { "AwFormDatabase", RegisterAwFormDatabase }, | 45 { "AwFormDatabase", RegisterAwFormDatabase }, |
44 { "AwPicture", RegisterAwPicture }, | 46 { "AwPicture", RegisterAwPicture }, |
45 { "AwSettings", RegisterAwSettings }, | 47 { "AwSettings", RegisterAwSettings }, |
46 { "AwHttpAuthHandler", RegisterAwHttpAuthHandler }, | 48 { "AwHttpAuthHandler", RegisterAwHttpAuthHandler }, |
47 { "AwPdfExporter", RegisterAwPdfExporter }, | 49 { "AwPdfExporter", RegisterAwPdfExporter }, |
(...skipping 10 matching lines...) Expand all Loading... |
58 { "JavaBrowserViewRendererHelper", RegisterJavaBrowserViewRendererHelper }, | 60 { "JavaBrowserViewRendererHelper", RegisterJavaBrowserViewRendererHelper }, |
59 }; | 61 }; |
60 | 62 |
61 bool RegisterJni(JNIEnv* env) { | 63 bool RegisterJni(JNIEnv* env) { |
62 TRACE_EVENT0("startup", "android_webview::RegisterJni"); | 64 TRACE_EVENT0("startup", "android_webview::RegisterJni"); |
63 return RegisterNativeMethods(env, | 65 return RegisterNativeMethods(env, |
64 kWebViewRegisteredMethods, arraysize(kWebViewRegisteredMethods)); | 66 kWebViewRegisteredMethods, arraysize(kWebViewRegisteredMethods)); |
65 } | 67 } |
66 | 68 |
67 } // namespace android_webview | 69 } // namespace android_webview |
OLD | NEW |