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/android/android_browser_process.h" | 9 #include "content/browser/android/android_browser_process.h" |
10 #include "content/browser/android/content_settings.h" | 10 #include "content/browser/android/content_settings.h" |
11 #include "content/browser/android/content_video_view.h" | 11 #include "content/browser/android/content_video_view.h" |
12 #include "content/browser/android/content_view_client.h" | |
13 #include "content/browser/android/content_view_core_impl.h" | 12 #include "content/browser/android/content_view_core_impl.h" |
14 #include "content/browser/android/content_view_statics.h" | 13 #include "content/browser/android/content_view_statics.h" |
15 #include "content/browser/android/download_controller.h" | 14 #include "content/browser/android/download_controller.h" |
16 #include "content/browser/android/load_url_params.h" | 15 #include "content/browser/android/load_url_params.h" |
17 #include "content/browser/android/sandboxed_process_launcher.h" | 16 #include "content/browser/android/sandboxed_process_launcher.h" |
18 #include "content/browser/android/surface_texture_peer_browser_impl.h" | 17 #include "content/browser/android/surface_texture_peer_browser_impl.h" |
19 #include "content/browser/android/touch_point.h" | 18 #include "content/browser/android/touch_point.h" |
20 #include "content/browser/android/web_contents_observer_android.h" | 19 #include "content/browser/android/web_contents_observer_android.h" |
21 #include "content/browser/geolocation/location_api_adapter_android.h" | 20 #include "content/browser/geolocation/location_api_adapter_android.h" |
22 #include "content/browser/renderer_host/ime_adapter_android.h" | 21 #include "content/browser/renderer_host/ime_adapter_android.h" |
23 #include "content/browser/renderer_host/java/java_bound_object.h" | 22 #include "content/browser/renderer_host/java/java_bound_object.h" |
24 | 23 |
25 using content::SurfaceTexturePeerBrowserImpl; | 24 using content::SurfaceTexturePeerBrowserImpl; |
26 | 25 |
27 namespace { | 26 namespace { |
28 base::android::RegistrationMethod kContentRegisteredMethods[] = { | 27 base::android::RegistrationMethod kContentRegisteredMethods[] = { |
29 { "AndroidLocationApiAdapter", | 28 { "AndroidLocationApiAdapter", |
30 AndroidLocationApiAdapter::RegisterGeolocationService }, | 29 AndroidLocationApiAdapter::RegisterGeolocationService }, |
31 { "AndroidBrowserProcess", content::RegisterAndroidBrowserProcess }, | 30 { "AndroidBrowserProcess", content::RegisterAndroidBrowserProcess }, |
32 { "BrowserProcessSurfaceTexture", | 31 { "BrowserProcessSurfaceTexture", |
33 SurfaceTexturePeerBrowserImpl::RegisterBrowserProcessSurfaceTexture }, | 32 SurfaceTexturePeerBrowserImpl::RegisterBrowserProcessSurfaceTexture }, |
34 { "ContentSettings", content::ContentSettings::RegisterContentSettings }, | 33 { "ContentSettings", content::ContentSettings::RegisterContentSettings }, |
35 { "ContentVideoView", content::ContentVideoView::RegisterContentVideoView }, | 34 { "ContentVideoView", content::ContentVideoView::RegisterContentVideoView }, |
36 { "ContentViewClient", content::RegisterContentViewClient }, | |
37 { "ContentViewCore", content::RegisterContentViewCore }, | 35 { "ContentViewCore", content::RegisterContentViewCore }, |
38 { "DownloadController", | 36 { "DownloadController", |
39 content::DownloadController::RegisterDownloadController }, | 37 content::DownloadController::RegisterDownloadController }, |
40 { "RegisterImeAdapter", content::RegisterImeAdapter }, | 38 { "RegisterImeAdapter", content::RegisterImeAdapter }, |
41 { "JavaBoundObject", JavaBoundObject::RegisterJavaBoundObject }, | 39 { "JavaBoundObject", JavaBoundObject::RegisterJavaBoundObject }, |
42 { "LoadUrlParams", content::RegisterLoadUrlParams }, | 40 { "LoadUrlParams", content::RegisterLoadUrlParams }, |
43 { "SandboxedProcessLauncher", content::RegisterSandboxedProcessLauncher }, | 41 { "SandboxedProcessLauncher", content::RegisterSandboxedProcessLauncher }, |
44 { "TouchPoint", content::RegisterTouchPoint }, | 42 { "TouchPoint", content::RegisterTouchPoint }, |
45 { "WebContentsObserverAndroid", content::RegisterWebContentsObserverAndroid }, | 43 { "WebContentsObserverAndroid", content::RegisterWebContentsObserverAndroid }, |
46 { "WebViewStatics", content::RegisterWebViewStatics }, | 44 { "WebViewStatics", content::RegisterWebViewStatics }, |
47 }; | 45 }; |
48 | 46 |
49 } // namespace | 47 } // namespace |
50 | 48 |
51 namespace content { | 49 namespace content { |
52 namespace android { | 50 namespace android { |
53 | 51 |
54 bool RegisterBrowserJni(JNIEnv* env) { | 52 bool RegisterBrowserJni(JNIEnv* env) { |
55 return RegisterNativeMethods(env, kContentRegisteredMethods, | 53 return RegisterNativeMethods(env, kContentRegisteredMethods, |
56 arraysize(kContentRegisteredMethods)); | 54 arraysize(kContentRegisteredMethods)); |
57 } | 55 } |
58 | 56 |
59 } // namespace android | 57 } // namespace android |
60 } // namespace content | 58 } // namespace content |
OLD | NEW |