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

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

Issue 12041009: [Android WebView] Migrate the rendering code to a separate set of classes. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: upload error, re-uploading. Created 7 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
« no previous file with comments | « android_webview/native/DEPS ('k') | android_webview/native/aw_contents.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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_contents.h" 8 #include "android_webview/native/aw_contents.h"
9 #include "android_webview/native/aw_contents_io_thread_client_impl.h" 9 #include "android_webview/native/aw_contents_io_thread_client_impl.h"
10 #include "android_webview/native/aw_http_auth_handler.h" 10 #include "android_webview/native/aw_http_auth_handler.h"
11 #include "android_webview/native/aw_resource.h" 11 #include "android_webview/native/aw_resource.h"
12 #include "android_webview/native/aw_settings.h" 12 #include "android_webview/native/aw_settings.h"
13 #include "android_webview/native/aw_web_contents_delegate.h" 13 #include "android_webview/native/aw_web_contents_delegate.h"
14 #include "android_webview/native/cookie_manager.h" 14 #include "android_webview/native/cookie_manager.h"
15 #include "android_webview/native/input_stream_impl.h" 15 #include "android_webview/native/input_stream_impl.h"
16 #include "android_webview/native/intercepted_request_data_impl.h" 16 #include "android_webview/native/intercepted_request_data_impl.h"
17 #include "android_webview/native/java_browser_view_renderer_helper.h"
17 #include "android_webview/native/js_result_handler.h" 18 #include "android_webview/native/js_result_handler.h"
18 #include "base/android/jni_android.h" 19 #include "base/android/jni_android.h"
19 #include "base/android/jni_registrar.h" 20 #include "base/android/jni_registrar.h"
20 21
21 namespace android_webview { 22 namespace android_webview {
22 23
23 static base::android::RegistrationMethod kWebViewRegisteredMethods[] = { 24 static base::android::RegistrationMethod kWebViewRegisteredMethods[] = {
24 // Register JNI for android_webview classes. 25 // Register JNI for android_webview classes.
25 { "AndroidProtocolHandler", RegisterAndroidProtocolHandler }, 26 { "AndroidProtocolHandler", RegisterAndroidProtocolHandler },
26 { "AwContents", RegisterAwContents }, 27 { "AwContents", RegisterAwContents },
27 { "AwContentsIoThreadClientImpl", RegisterAwContentsIoThreadClientImpl}, 28 { "AwContentsIoThreadClientImpl", RegisterAwContentsIoThreadClientImpl},
28 { "AwSettings", RegisterAwSettings }, 29 { "AwSettings", RegisterAwSettings },
29 { "AwHttpAuthHandler", RegisterAwHttpAuthHandler }, 30 { "AwHttpAuthHandler", RegisterAwHttpAuthHandler },
30 { "AwResource", AwResource::RegisterAwResource }, 31 { "AwResource", AwResource::RegisterAwResource },
31 { "AwWebContentsDelegate", RegisterAwWebContentsDelegate }, 32 { "AwWebContentsDelegate", RegisterAwWebContentsDelegate },
32 { "CookieManager", RegisterCookieManager }, 33 { "CookieManager", RegisterCookieManager },
33 { "InterceptedRequestDataImpl", RegisterInterceptedRequestData }, 34 { "InterceptedRequestDataImpl", RegisterInterceptedRequestData },
34 { "InputStream", RegisterInputStream }, 35 { "InputStream", RegisterInputStream },
36 { "JavaBrowserViewRendererHelper", RegisterJavaBrowserViewRendererHelper },
35 { "JsResultHandler", RegisterJsResultHandler }, 37 { "JsResultHandler", RegisterJsResultHandler },
36 }; 38 };
37 39
38 bool RegisterJni(JNIEnv* env) { 40 bool RegisterJni(JNIEnv* env) {
39 return RegisterNativeMethods(env, 41 return RegisterNativeMethods(env,
40 kWebViewRegisteredMethods, arraysize(kWebViewRegisteredMethods)); 42 kWebViewRegisteredMethods, arraysize(kWebViewRegisteredMethods));
41 } 43 }
42 44
43 } // namespace android_webview 45 } // namespace android_webview
OLDNEW
« no previous file with comments | « android_webview/native/DEPS ('k') | android_webview/native/aw_contents.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698