| OLD | NEW |
| 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 "chrome/browser/android/chrome_jni_registrar.h" | 5 #include "chrome/browser/android/chrome_jni_registrar.h" |
| 6 | 6 |
| 7 #include "base/android/jni_android.h" | 7 #include "base/android/jni_android.h" |
| 8 #include "base/android/jni_registrar.h" | 8 #include "base/android/jni_registrar.h" |
| 9 #include "chrome/browser/android/chrome_web_contents_delegate_android.h" | 9 #include "chrome/browser/android/chrome_web_contents_delegate_android.h" |
| 10 #include "chrome/browser/android/content_view_util.h" | 10 #include "chrome/browser/android/content_view_util.h" |
| 11 #include "chrome/browser/android/dev_tools_server.h" | 11 #include "chrome/browser/android/dev_tools_server.h" |
| 12 #include "chrome/browser/android/intent_helper.h" | 12 #include "chrome/browser/android/intent_helper.h" |
| 13 #include "chrome/browser/android/process_utils.h" | 13 #include "chrome/browser/android/process_utils.h" |
| 14 #include "chrome/browser/android/provider/chrome_browser_provider.h" | 14 #include "chrome/browser/android/provider/chrome_browser_provider.h" |
| 15 #include "chrome/browser/history/android/sqlite_cursor.h" | 15 #include "chrome/browser/history/android/sqlite_cursor.h" |
| 16 #include "chrome/browser/lifetime/application_lifetime_android.h" | 16 #include "chrome/browser/lifetime/application_lifetime_android.h" |
| 17 #include "chrome/browser/search_engines/template_url_service_android.h" |
| 17 #include "chrome/browser/ui/android/autofill/autofill_dialog_view_android.h" | 18 #include "chrome/browser/ui/android/autofill/autofill_dialog_view_android.h" |
| 18 #include "chrome/browser/ui/android/autofill/autofill_popup_view_android.h" | 19 #include "chrome/browser/ui/android/autofill/autofill_popup_view_android.h" |
| 19 #include "chrome/browser/ui/android/chrome_http_auth_handler.h" | 20 #include "chrome/browser/ui/android/chrome_http_auth_handler.h" |
| 20 #include "chrome/browser/ui/android/javascript_app_modal_dialog_android.h" | 21 #include "chrome/browser/ui/android/javascript_app_modal_dialog_android.h" |
| 21 #include "chrome/browser/ui/android/navigation_popup.h" | 22 #include "chrome/browser/ui/android/navigation_popup.h" |
| 22 #include "chrome/browser/ui/android/website_settings_popup_android.h" | 23 #include "chrome/browser/ui/android/website_settings_popup_android.h" |
| 23 #include "components/navigation_interception/component_jni_registrar.h" | 24 #include "components/navigation_interception/component_jni_registrar.h" |
| 24 #include "components/web_contents_delegate_android/component_jni_registrar.h" | 25 #include "components/web_contents_delegate_android/component_jni_registrar.h" |
| 25 | 26 |
| 26 bool RegisterCertificateViewer(JNIEnv* env); | 27 bool RegisterCertificateViewer(JNIEnv* env); |
| (...skipping 20 matching lines...) Expand all Loading... |
| 47 { "ChromeWebContentsDelegateAndroid", | 48 { "ChromeWebContentsDelegateAndroid", |
| 48 RegisterChromeWebContentsDelegateAndroid }, | 49 RegisterChromeWebContentsDelegateAndroid }, |
| 49 { "ContentViewUtil", RegisterContentViewUtil }, | 50 { "ContentViewUtil", RegisterContentViewUtil }, |
| 50 { "DevToolsServer", RegisterDevToolsServer }, | 51 { "DevToolsServer", RegisterDevToolsServer }, |
| 51 { "IntentHelper", RegisterIntentHelper }, | 52 { "IntentHelper", RegisterIntentHelper }, |
| 52 { "JavascriptAppModalDialog", | 53 { "JavascriptAppModalDialog", |
| 53 JavascriptAppModalDialogAndroid::RegisterJavascriptAppModalDialog }, | 54 JavascriptAppModalDialogAndroid::RegisterJavascriptAppModalDialog }, |
| 54 { "NavigationPopup", NavigationPopup::RegisterNavigationPopup }, | 55 { "NavigationPopup", NavigationPopup::RegisterNavigationPopup }, |
| 55 { "ProcessUtils", RegisterProcessUtils }, | 56 { "ProcessUtils", RegisterProcessUtils }, |
| 56 { "SqliteCursor", SQLiteCursor::RegisterSqliteCursor }, | 57 { "SqliteCursor", SQLiteCursor::RegisterSqliteCursor }, |
| 58 { "TemplateUrlServiceAndroid", TemplateUrlServiceAndroid::Register }, |
| 57 { "WebsiteSettingsPopupAndroid", | 59 { "WebsiteSettingsPopupAndroid", |
| 58 WebsiteSettingsPopupAndroid::RegisterWebsiteSettingsPopupAndroid }, | 60 WebsiteSettingsPopupAndroid::RegisterWebsiteSettingsPopupAndroid }, |
| 59 }; | 61 }; |
| 60 | 62 |
| 61 bool RegisterJni(JNIEnv* env) { | 63 bool RegisterJni(JNIEnv* env) { |
| 62 return RegisterNativeMethods(env, kChromeRegisteredMethods, | 64 return RegisterNativeMethods(env, kChromeRegisteredMethods, |
| 63 arraysize(kChromeRegisteredMethods)); | 65 arraysize(kChromeRegisteredMethods)); |
| 64 } | 66 } |
| 65 | 67 |
| 66 } // namespace android | 68 } // namespace android |
| 67 } // namespace chrome | 69 } // namespace chrome |
| OLD | NEW |