| Index: android_webview/native/android_webview_jni_registrar.cc
|
| diff --git a/android_webview/native/android_webview_jni_registrar.cc b/android_webview/native/android_webview_jni_registrar.cc
|
| index 24241d73818bea6ddd4f91fd91f70cc35b7957e5..2b22ce79e7017d0d3e78d79d45313a10b080dd91 100644
|
| --- a/android_webview/native/android_webview_jni_registrar.cc
|
| +++ b/android_webview/native/android_webview_jni_registrar.cc
|
| @@ -10,7 +10,6 @@
|
| #include "android_webview/native/aw_contents_client_bridge.h"
|
| #include "android_webview/native/aw_contents_io_thread_client_impl.h"
|
| #include "android_webview/native/aw_dev_tools_server.h"
|
| -#include "android_webview/native/aw_form_database.h"
|
| #include "android_webview/native/aw_http_auth_handler.h"
|
| #include "android_webview/native/aw_pdf_exporter.h"
|
| #include "android_webview/native/aw_picture.h"
|
| @@ -18,7 +17,6 @@
|
| #include "android_webview/native/aw_resource.h"
|
| #include "android_webview/native/aw_settings.h"
|
| #include "android_webview/native/aw_web_contents_delegate.h"
|
| -#include "android_webview/native/cookie_manager.h"
|
| #include "android_webview/native/external_video_surface_container_impl.h"
|
| #include "android_webview/native/input_stream_impl.h"
|
| #include "android_webview/native/intercepted_request_data_impl.h"
|
| @@ -29,23 +27,19 @@
|
|
|
| namespace android_webview {
|
|
|
| -static base::android::RegistrationMethod kWebViewRegisteredMethods[] = {
|
| +static const base::android::RegistrationMethod kWebViewRegisteredMethods[] = {
|
| // Register JNI for android_webview classes.
|
| { "AndroidProtocolHandler", RegisterAndroidProtocolHandler },
|
| { "AwAutofillManagerDelegate", RegisterAwAutofillManagerDelegate },
|
| { "AwContents", RegisterAwContents },
|
| { "AwContentsClientBridge", RegisterAwContentsClientBridge },
|
| { "AwContentsIoThreadClientImpl", RegisterAwContentsIoThreadClientImpl },
|
| - { "AwDevToolsServer", RegisterAwDevToolsServer },
|
| - { "AwFormDatabase", RegisterAwFormDatabase },
|
| - { "AwPicture", RegisterAwPicture },
|
| { "AwSettings", RegisterAwSettings },
|
| { "AwHttpAuthHandler", RegisterAwHttpAuthHandler },
|
| { "AwPdfExporter", RegisterAwPdfExporter },
|
| { "AwQuotaManagerBridge", RegisterAwQuotaManagerBridge },
|
| { "AwResource", AwResource::RegisterAwResource },
|
| { "AwWebContentsDelegate", RegisterAwWebContentsDelegate },
|
| - { "CookieManager", RegisterCookieManager },
|
| #if defined(VIDEO_HOLE)
|
| { "ExternalVideoSurfaceContainer", RegisterExternalVideoSurfaceContainer },
|
| #endif
|
|
|