// Copyright (c) 2012 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "content/browser/android/browser_jni_registrar.h" #include "base/android/jni_android.h" #include "base/android/jni_registrar.h" #include "content/browser/android/android_browser_process.h" #include "content/browser/android/content_settings.h" #include "content/browser/android/content_video_view.h" #include "content/browser/android/content_view_core_impl.h" #include "content/browser/android/content_view_render_view.h" #include "content/browser/android/content_view_statics.h" #include "content/browser/android/download_controller_android_impl.h" #include "content/browser/android/interstitial_page_delegate_android.h" #include "content/browser/android/load_url_params.h" #include "content/browser/android/sandboxed_process_launcher.h" #include "content/browser/android/surface_texture_peer_browser_impl.h" #include "content/browser/android/touch_point.h" #include "content/browser/android/web_contents_observer_android.h" #include "content/browser/geolocation/location_api_adapter_android.h" #include "content/browser/renderer_host/ime_adapter_android.h" #include "content/browser/renderer_host/java/java_bound_object.h" using content::SurfaceTexturePeerBrowserImpl; namespace { base::android::RegistrationMethod kContentRegisteredMethods[] = { { "AndroidLocationApiAdapter", content::AndroidLocationApiAdapter::RegisterGeolocationService }, { "AndroidBrowserProcess", content::RegisterAndroidBrowserProcess }, { "BrowserProcessSurfaceTexture", SurfaceTexturePeerBrowserImpl::RegisterBrowserProcessSurfaceTexture }, { "ContentSettings", content::ContentSettings::RegisterContentSettings }, { "ContentViewRenderView", content::ContentViewRenderView::RegisterContentViewRenderView }, { "ContentVideoView", content::ContentVideoView::RegisterContentVideoView }, { "ContentViewCore", content::RegisterContentViewCore }, { "DownloadControllerAndroidImpl", content::DownloadControllerAndroidImpl::RegisterDownloadController }, { "InterstitialPageDelegateAndroid", content::InterstitialPageDelegateAndroid ::RegisterInterstitialPageDelegateAndroid }, { "LoadUrlParams", content::RegisterLoadUrlParams }, { "RegisterImeAdapter", content::RegisterImeAdapter }, { "SandboxedProcessLauncher", content::RegisterSandboxedProcessLauncher }, { "TouchPoint", content::RegisterTouchPoint }, { "WebContentsObserverAndroid", content::RegisterWebContentsObserverAndroid }, { "WebViewStatics", content::RegisterWebViewStatics }, }; } // namespace namespace content { namespace android { bool RegisterBrowserJni(JNIEnv* env) { return RegisterNativeMethods(env, kContentRegisteredMethods, arraysize(kContentRegisteredMethods)); } } // namespace android } // namespace content