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

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

Issue 284123004: [android_webview] Add more params to request intercepting. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix accidentally broken test Created 6 years, 6 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_client.h" 8 #include "android_webview/native/aw_autofill_client.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_contents_statics.h" 12 #include "android_webview/native/aw_contents_statics.h"
13 #include "android_webview/native/aw_dev_tools_server.h" 13 #include "android_webview/native/aw_dev_tools_server.h"
14 #include "android_webview/native/aw_form_database.h" 14 #include "android_webview/native/aw_form_database.h"
15 #include "android_webview/native/aw_http_auth_handler.h" 15 #include "android_webview/native/aw_http_auth_handler.h"
16 #include "android_webview/native/aw_pdf_exporter.h" 16 #include "android_webview/native/aw_pdf_exporter.h"
17 #include "android_webview/native/aw_picture.h" 17 #include "android_webview/native/aw_picture.h"
18 #include "android_webview/native/aw_quota_manager_bridge_impl.h" 18 #include "android_webview/native/aw_quota_manager_bridge_impl.h"
19 #include "android_webview/native/aw_resource.h" 19 #include "android_webview/native/aw_resource.h"
20 #include "android_webview/native/aw_settings.h" 20 #include "android_webview/native/aw_settings.h"
21 #include "android_webview/native/aw_web_contents_delegate.h" 21 #include "android_webview/native/aw_web_contents_delegate.h"
22 #include "android_webview/native/aw_web_resource_response_impl.h"
22 #include "android_webview/native/cookie_manager.h" 23 #include "android_webview/native/cookie_manager.h"
23 #include "android_webview/native/external_video_surface_container_impl.h" 24 #include "android_webview/native/external_video_surface_container_impl.h"
24 #include "android_webview/native/input_stream_impl.h" 25 #include "android_webview/native/input_stream_impl.h"
25 #include "android_webview/native/intercepted_request_data_impl.h"
26 #include "android_webview/native/java_browser_view_renderer_helper.h" 26 #include "android_webview/native/java_browser_view_renderer_helper.h"
27 #include "android_webview/native/permission/aw_permission_request.h" 27 #include "android_webview/native/permission/aw_permission_request.h"
28 #include "base/android/jni_android.h" 28 #include "base/android/jni_android.h"
29 #include "base/android/jni_registrar.h" 29 #include "base/android/jni_registrar.h"
30 #include "base/debug/trace_event.h" 30 #include "base/debug/trace_event.h"
31 31
32 namespace android_webview { 32 namespace android_webview {
33 33
34 static base::android::RegistrationMethod kWebViewRegisteredMethods[] = { 34 static base::android::RegistrationMethod kWebViewRegisteredMethods[] = {
35 // Register JNI for android_webview classes. 35 // Register JNI for android_webview classes.
(...skipping 10 matching lines...) Expand all
46 { "AwHttpAuthHandler", RegisterAwHttpAuthHandler }, 46 { "AwHttpAuthHandler", RegisterAwHttpAuthHandler },
47 { "AwPdfExporter", RegisterAwPdfExporter }, 47 { "AwPdfExporter", RegisterAwPdfExporter },
48 { "AwPermissionRequest", RegisterAwPermissionRequest }, 48 { "AwPermissionRequest", RegisterAwPermissionRequest },
49 { "AwQuotaManagerBridge", RegisterAwQuotaManagerBridge }, 49 { "AwQuotaManagerBridge", RegisterAwQuotaManagerBridge },
50 { "AwResource", AwResource::RegisterAwResource }, 50 { "AwResource", AwResource::RegisterAwResource },
51 { "AwWebContentsDelegate", RegisterAwWebContentsDelegate }, 51 { "AwWebContentsDelegate", RegisterAwWebContentsDelegate },
52 { "CookieManager", RegisterCookieManager }, 52 { "CookieManager", RegisterCookieManager },
53 #if defined(VIDEO_HOLE) 53 #if defined(VIDEO_HOLE)
54 { "ExternalVideoSurfaceContainer", RegisterExternalVideoSurfaceContainer }, 54 { "ExternalVideoSurfaceContainer", RegisterExternalVideoSurfaceContainer },
55 #endif 55 #endif
56 { "InterceptedRequestDataImpl", RegisterInterceptedRequestData }, 56 { "AwWebResourceResponseImpl", RegisterAwWebResourceResponse },
57 { "InputStream", RegisterInputStream }, 57 { "InputStream", RegisterInputStream },
58 { "JavaBrowserViewRendererHelper", RegisterJavaBrowserViewRendererHelper }, 58 { "JavaBrowserViewRendererHelper", RegisterJavaBrowserViewRendererHelper },
59 }; 59 };
60 60
61 bool RegisterJni(JNIEnv* env) { 61 bool RegisterJni(JNIEnv* env) {
62 TRACE_EVENT0("startup", "android_webview::RegisterJni"); 62 TRACE_EVENT0("startup", "android_webview::RegisterJni");
63 return RegisterNativeMethods(env, 63 return RegisterNativeMethods(env,
64 kWebViewRegisteredMethods, arraysize(kWebViewRegisteredMethods)); 64 kWebViewRegisteredMethods, arraysize(kWebViewRegisteredMethods));
65 } 65 }
66 66
67 } // namespace android_webview 67 } // namespace android_webview
OLDNEW
« no previous file with comments | « android_webview/native/android_protocol_handler.cc ('k') | android_webview/native/aw_contents_io_thread_client_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698