Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(442)

Side by Side Diff: android_webview/native/android_webview_jni_registrar.cc

Issue 132233042: Enable the embedded L1/EME support in WebView. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebased. Created 6 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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_autofill_manager_delegate.h" 8 #include "android_webview/native/aw_autofill_manager_delegate.h"
9 #include "android_webview/native/aw_contents.h" 9 #include "android_webview/native/aw_contents.h"
10 #include "android_webview/native/aw_contents_client_bridge.h" 10 #include "android_webview/native/aw_contents_client_bridge.h"
11 #include "android_webview/native/aw_contents_io_thread_client_impl.h" 11 #include "android_webview/native/aw_contents_io_thread_client_impl.h"
12 #include "android_webview/native/aw_dev_tools_server.h" 12 #include "android_webview/native/aw_dev_tools_server.h"
13 #include "android_webview/native/aw_form_database.h" 13 #include "android_webview/native/aw_form_database.h"
14 #include "android_webview/native/aw_http_auth_handler.h" 14 #include "android_webview/native/aw_http_auth_handler.h"
15 #include "android_webview/native/aw_pdf_exporter.h" 15 #include "android_webview/native/aw_pdf_exporter.h"
16 #include "android_webview/native/aw_picture.h" 16 #include "android_webview/native/aw_picture.h"
17 #include "android_webview/native/aw_quota_manager_bridge_impl.h" 17 #include "android_webview/native/aw_quota_manager_bridge_impl.h"
18 #include "android_webview/native/aw_resource.h" 18 #include "android_webview/native/aw_resource.h"
19 #include "android_webview/native/aw_settings.h" 19 #include "android_webview/native/aw_settings.h"
20 #include "android_webview/native/aw_web_contents_delegate.h" 20 #include "android_webview/native/aw_web_contents_delegate.h"
21 #include "android_webview/native/cookie_manager.h" 21 #include "android_webview/native/cookie_manager.h"
22 #include "android_webview/native/external_video_surface_container_impl.h"
22 #include "android_webview/native/input_stream_impl.h" 23 #include "android_webview/native/input_stream_impl.h"
23 #include "android_webview/native/intercepted_request_data_impl.h" 24 #include "android_webview/native/intercepted_request_data_impl.h"
24 #include "android_webview/native/java_browser_view_renderer_helper.h" 25 #include "android_webview/native/java_browser_view_renderer_helper.h"
25 #include "base/android/jni_android.h" 26 #include "base/android/jni_android.h"
26 #include "base/android/jni_registrar.h" 27 #include "base/android/jni_registrar.h"
27 #include "base/debug/trace_event.h" 28 #include "base/debug/trace_event.h"
28 29
29 namespace android_webview { 30 namespace android_webview {
30 31
31 static base::android::RegistrationMethod kWebViewRegisteredMethods[] = { 32 static base::android::RegistrationMethod kWebViewRegisteredMethods[] = {
32 // Register JNI for android_webview classes. 33 // Register JNI for android_webview classes.
33 { "AndroidProtocolHandler", RegisterAndroidProtocolHandler }, 34 { "AndroidProtocolHandler", RegisterAndroidProtocolHandler },
34 { "AwAutofillManagerDelegate", RegisterAwAutofillManagerDelegate }, 35 { "AwAutofillManagerDelegate", RegisterAwAutofillManagerDelegate },
35 { "AwContents", RegisterAwContents }, 36 { "AwContents", RegisterAwContents },
36 { "AwContentsClientBridge", RegisterAwContentsClientBridge }, 37 { "AwContentsClientBridge", RegisterAwContentsClientBridge },
37 { "AwContentsIoThreadClientImpl", RegisterAwContentsIoThreadClientImpl }, 38 { "AwContentsIoThreadClientImpl", RegisterAwContentsIoThreadClientImpl },
38 { "AwDevToolsServer", RegisterAwDevToolsServer }, 39 { "AwDevToolsServer", RegisterAwDevToolsServer },
39 { "AwFormDatabase", RegisterAwFormDatabase }, 40 { "AwFormDatabase", RegisterAwFormDatabase },
40 { "AwPicture", RegisterAwPicture }, 41 { "AwPicture", RegisterAwPicture },
41 { "AwSettings", RegisterAwSettings }, 42 { "AwSettings", RegisterAwSettings },
42 { "AwHttpAuthHandler", RegisterAwHttpAuthHandler }, 43 { "AwHttpAuthHandler", RegisterAwHttpAuthHandler },
43 { "AwPdfExporter", RegisterAwPdfExporter }, 44 { "AwPdfExporter", RegisterAwPdfExporter },
44 { "AwQuotaManagerBridge", RegisterAwQuotaManagerBridge }, 45 { "AwQuotaManagerBridge", RegisterAwQuotaManagerBridge },
45 { "AwResource", AwResource::RegisterAwResource }, 46 { "AwResource", AwResource::RegisterAwResource },
46 { "AwWebContentsDelegate", RegisterAwWebContentsDelegate }, 47 { "AwWebContentsDelegate", RegisterAwWebContentsDelegate },
47 { "CookieManager", RegisterCookieManager }, 48 { "CookieManager", RegisterCookieManager },
49 #if defined(VIDEO_HOLE)
50 { "ExternalVideoSurfaceContainer", RegisterExternalVideoSurfaceContainer },
51 #endif
48 { "InterceptedRequestDataImpl", RegisterInterceptedRequestData }, 52 { "InterceptedRequestDataImpl", RegisterInterceptedRequestData },
49 { "InputStream", RegisterInputStream }, 53 { "InputStream", RegisterInputStream },
50 { "JavaBrowserViewRendererHelper", RegisterJavaBrowserViewRendererHelper }, 54 { "JavaBrowserViewRendererHelper", RegisterJavaBrowserViewRendererHelper },
51 }; 55 };
52 56
53 bool RegisterJni(JNIEnv* env) { 57 bool RegisterJni(JNIEnv* env) {
54 TRACE_EVENT0("startup", "android_webview::RegisterJni"); 58 TRACE_EVENT0("startup", "android_webview::RegisterJni");
55 return RegisterNativeMethods(env, 59 return RegisterNativeMethods(env,
56 kWebViewRegisteredMethods, arraysize(kWebViewRegisteredMethods)); 60 kWebViewRegisteredMethods, arraysize(kWebViewRegisteredMethods));
57 } 61 }
58 62
59 } // namespace android_webview 63 } // namespace android_webview
OLDNEW
« no previous file with comments | « android_webview/lib/main/aw_main_delegate.cc ('k') | android_webview/native/external_video_surface_container_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698