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 "content/browser/android/browser_jni_registrar.h" | 5 #include "content/browser/android/browser_jni_registrar.h" |
6 | 6 |
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 "content/browser/accessibility/browser_accessibility_android.h" | |
10 #include "content/browser/accessibility/browser_accessibility_manager_android.h" | |
11 #include "content/browser/android/android_browser_process.h" | 9 #include "content/browser/android/android_browser_process.h" |
12 #include "content/browser/android/child_process_launcher_android.h" | 10 #include "content/browser/android/child_process_launcher_android.h" |
13 #include "content/browser/android/content_settings.h" | 11 #include "content/browser/android/content_settings.h" |
14 #include "content/browser/android/content_video_view.h" | 12 #include "content/browser/android/content_video_view.h" |
15 #include "content/browser/android/content_view_core_impl.h" | 13 #include "content/browser/android/content_view_core_impl.h" |
16 #include "content/browser/android/content_view_render_view.h" | 14 #include "content/browser/android/content_view_render_view.h" |
17 #include "content/browser/android/content_view_statics.h" | 15 #include "content/browser/android/content_view_statics.h" |
18 #include "content/browser/android/date_time_chooser_android.h" | 16 #include "content/browser/android/date_time_chooser_android.h" |
19 #include "content/browser/android/download_controller_android_impl.h" | 17 #include "content/browser/android/download_controller_android_impl.h" |
20 #include "content/browser/android/interstitial_page_delegate_android.h" | 18 #include "content/browser/android/interstitial_page_delegate_android.h" |
21 #include "content/browser/android/load_url_params.h" | 19 #include "content/browser/android/load_url_params.h" |
22 #include "content/browser/android/media_resource_getter_impl.h" | 20 #include "content/browser/android/media_resource_getter_impl.h" |
23 #include "content/browser/android/surface_texture_peer_browser_impl.h" | 21 #include "content/browser/android/surface_texture_peer_browser_impl.h" |
24 #include "content/browser/android/touch_point.h" | 22 #include "content/browser/android/touch_point.h" |
25 #include "content/browser/android/tracing_intent_handler.h" | 23 #include "content/browser/android/tracing_intent_handler.h" |
26 #include "content/browser/android/web_contents_observer_android.h" | 24 #include "content/browser/android/web_contents_observer_android.h" |
27 #include "content/browser/geolocation/location_api_adapter_android.h" | 25 #include "content/browser/geolocation/location_api_adapter_android.h" |
28 #include "content/browser/renderer_host/ime_adapter_android.h" | 26 #include "content/browser/renderer_host/ime_adapter_android.h" |
29 #include "content/browser/renderer_host/java/java_bound_object.h" | 27 #include "content/browser/renderer_host/java/java_bound_object.h" |
30 #include "content/browser/speech/speech_recognizer_impl_android.h" | 28 #include "content/browser/speech/speech_recognizer_impl_android.h" |
31 | 29 |
32 using content::SurfaceTexturePeerBrowserImpl; | 30 using content::SurfaceTexturePeerBrowserImpl; |
33 | 31 |
34 namespace { | 32 namespace { |
35 base::android::RegistrationMethod kContentRegisteredMethods[] = { | 33 base::android::RegistrationMethod kContentRegisteredMethods[] = { |
36 { "AndroidLocationApiAdapter", | 34 { "AndroidLocationApiAdapter", |
37 content::AndroidLocationApiAdapter::RegisterGeolocationService }, | 35 content::AndroidLocationApiAdapter::RegisterGeolocationService }, |
38 { "AndroidBrowserProcess", content::RegisterAndroidBrowserProcess }, | 36 { "AndroidBrowserProcess", content::RegisterAndroidBrowserProcess }, |
39 { "BrowserAccessibilityManager", | |
40 content::RegisterBrowserAccessibilityManager }, | |
41 { "ChildProcessLauncher", content::RegisterChildProcessLauncher }, | 37 { "ChildProcessLauncher", content::RegisterChildProcessLauncher }, |
42 { "ContentSettings", content::ContentSettings::RegisterContentSettings }, | 38 { "ContentSettings", content::ContentSettings::RegisterContentSettings }, |
43 { "ContentViewRenderView", | 39 { "ContentViewRenderView", |
44 content::ContentViewRenderView::RegisterContentViewRenderView }, | 40 content::ContentViewRenderView::RegisterContentViewRenderView }, |
45 { "ContentVideoView", content::ContentVideoView::RegisterContentVideoView }, | 41 { "ContentVideoView", content::ContentVideoView::RegisterContentVideoView }, |
46 { "ContentViewCore", content::RegisterContentViewCore }, | 42 { "ContentViewCore", content::RegisterContentViewCore }, |
47 { "DateTimePickerAndroid", content::RegisterDateTimeChooserAndroid}, | 43 { "DateTimePickerAndroid", content::RegisterDateTimeChooserAndroid}, |
48 { "DownloadControllerAndroidImpl", | 44 { "DownloadControllerAndroidImpl", |
49 content::DownloadControllerAndroidImpl::RegisterDownloadController }, | 45 content::DownloadControllerAndroidImpl::RegisterDownloadController }, |
50 { "InterstitialPageDelegateAndroid", | 46 { "InterstitialPageDelegateAndroid", |
(...skipping 16 matching lines...) Expand all Loading... |
67 namespace content { | 63 namespace content { |
68 namespace android { | 64 namespace android { |
69 | 65 |
70 bool RegisterBrowserJni(JNIEnv* env) { | 66 bool RegisterBrowserJni(JNIEnv* env) { |
71 return RegisterNativeMethods(env, kContentRegisteredMethods, | 67 return RegisterNativeMethods(env, kContentRegisteredMethods, |
72 arraysize(kContentRegisteredMethods)); | 68 arraysize(kContentRegisteredMethods)); |
73 } | 69 } |
74 | 70 |
75 } // namespace android | 71 } // namespace android |
76 } // namespace content | 72 } // namespace content |
OLD | NEW |