| 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/trace_event/trace_event.h" | 10 #include "base/trace_event/trace_event.h" |
| 10 #include "chrome/browser/after_startup_task_utils_android.h" | 11 #include "chrome/browser/after_startup_task_utils_android.h" |
| 11 #include "chrome/browser/android/accessibility/font_size_prefs_android.h" | 12 #include "chrome/browser/android/accessibility/font_size_prefs_android.h" |
| 12 #include "chrome/browser/android/accessibility_util.h" | 13 #include "chrome/browser/android/accessibility_util.h" |
| 13 #include "chrome/browser/android/appmenu/app_menu_drag_helper.h" | 14 #include "chrome/browser/android/appmenu/app_menu_drag_helper.h" |
| 14 #include "chrome/browser/android/background_sync_launcher_android.h" | 15 #include "chrome/browser/android/background_sync_launcher_android.h" |
| 15 #include "chrome/browser/android/banners/app_banner_infobar_delegate_android.h" | 16 #include "chrome/browser/android/banners/app_banner_infobar_delegate_android.h" |
| 16 #include "chrome/browser/android/banners/app_banner_manager_android.h" | 17 #include "chrome/browser/android/banners/app_banner_manager_android.h" |
| 17 #include "chrome/browser/android/bookmarks/bookmarks_bridge.h" | 18 #include "chrome/browser/android/bookmarks/bookmarks_bridge.h" |
| 18 #include "chrome/browser/android/bookmarks/edit_bookmark_helper.h" | 19 #include "chrome/browser/android/bookmarks/edit_bookmark_helper.h" |
| (...skipping 347 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 366 }; | 367 }; |
| 367 | 368 |
| 368 bool RegisterBrowserJNI(JNIEnv* env) { | 369 bool RegisterBrowserJNI(JNIEnv* env) { |
| 369 TRACE_EVENT0("startup", "chrome_android::RegisterJni"); | 370 TRACE_EVENT0("startup", "chrome_android::RegisterJni"); |
| 370 return RegisterNativeMethods(env, kChromeRegisteredMethods, | 371 return RegisterNativeMethods(env, kChromeRegisteredMethods, |
| 371 arraysize(kChromeRegisteredMethods)); | 372 arraysize(kChromeRegisteredMethods)); |
| 372 } | 373 } |
| 373 | 374 |
| 374 } // namespace android | 375 } // namespace android |
| 375 } // namespace chrome | 376 } // namespace chrome |
| OLD | NEW |