| 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 "base/macros.h" | 9 #include "base/macros.h" |
| 10 #include "base/trace_event/trace_event.h" | 10 #include "base/trace_event/trace_event.h" |
| (...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 82 #include "chrome/browser/android/precache/precache_launcher.h" | 82 #include "chrome/browser/android/precache/precache_launcher.h" |
| 83 #include "chrome/browser/android/preferences/autofill/autofill_profile_bridge.h" | 83 #include "chrome/browser/android/preferences/autofill/autofill_profile_bridge.h" |
| 84 #include "chrome/browser/android/preferences/pref_service_bridge.h" | 84 #include "chrome/browser/android/preferences/pref_service_bridge.h" |
| 85 #include "chrome/browser/android/preferences/website_preference_bridge.h" | 85 #include "chrome/browser/android/preferences/website_preference_bridge.h" |
| 86 #include "chrome/browser/android/profiles/profile_downloader_android.h" | 86 #include "chrome/browser/android/profiles/profile_downloader_android.h" |
| 87 #include "chrome/browser/android/provider/chrome_browser_provider.h" | 87 #include "chrome/browser/android/provider/chrome_browser_provider.h" |
| 88 #include "chrome/browser/android/rappor/rappor_service_bridge.h" | 88 #include "chrome/browser/android/rappor/rappor_service_bridge.h" |
| 89 #include "chrome/browser/android/recently_closed_tabs_bridge.h" | 89 #include "chrome/browser/android/recently_closed_tabs_bridge.h" |
| 90 #include "chrome/browser/android/rlz/revenue_stats.h" | 90 #include "chrome/browser/android/rlz/revenue_stats.h" |
| 91 #include "chrome/browser/android/safe_browsing/safe_browsing_api_handler_bridge.
h" | 91 #include "chrome/browser/android/safe_browsing/safe_browsing_api_handler_bridge.
h" |
| 92 #include "chrome/browser/android/search_geolocation_disclosure_tab_helper.h" | 92 #include "chrome/browser/android/search_geolocation/search_geolocation_disclosur
e_tab_helper.h" |
| 93 #include "chrome/browser/android/service_tab_launcher.h" | 93 #include "chrome/browser/android/service_tab_launcher.h" |
| 94 #include "chrome/browser/android/sessions/session_tab_helper_android.h" | 94 #include "chrome/browser/android/sessions/session_tab_helper_android.h" |
| 95 #include "chrome/browser/android/shortcut_helper.h" | 95 #include "chrome/browser/android/shortcut_helper.h" |
| 96 #include "chrome/browser/android/signin/account_management_screen_helper.h" | 96 #include "chrome/browser/android/signin/account_management_screen_helper.h" |
| 97 #include "chrome/browser/android/signin/account_tracker_service_android.h" | 97 #include "chrome/browser/android/signin/account_tracker_service_android.h" |
| 98 #include "chrome/browser/android/signin/signin_investigator_android.h" | 98 #include "chrome/browser/android/signin/signin_investigator_android.h" |
| 99 #include "chrome/browser/android/signin/signin_manager_android.h" | 99 #include "chrome/browser/android/signin/signin_manager_android.h" |
| 100 #include "chrome/browser/android/tab_android.h" | 100 #include "chrome/browser/android/tab_android.h" |
| 101 #include "chrome/browser/android/tab_state.h" | 101 #include "chrome/browser/android/tab_state.h" |
| 102 #include "chrome/browser/android/tab_web_contents_delegate_android.h" | 102 #include "chrome/browser/android/tab_web_contents_delegate_android.h" |
| (...skipping 332 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 435 #endif | 435 #endif |
| 436 }; | 436 }; |
| 437 | 437 |
| 438 bool RegisterBrowserJNI(JNIEnv* env) { | 438 bool RegisterBrowserJNI(JNIEnv* env) { |
| 439 TRACE_EVENT0("startup", "chrome_android::RegisterJni"); | 439 TRACE_EVENT0("startup", "chrome_android::RegisterJni"); |
| 440 return RegisterNativeMethods(env, kChromeRegisteredMethods, | 440 return RegisterNativeMethods(env, kChromeRegisteredMethods, |
| 441 arraysize(kChromeRegisteredMethods)); | 441 arraysize(kChromeRegisteredMethods)); |
| 442 } | 442 } |
| 443 | 443 |
| 444 } // namespace android | 444 } // namespace android |
| OLD | NEW |