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

Side by Side Diff: chrome/browser/android/chrome_jni_registrar.cc

Issue 23443009: [Android] Support startup histogram. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: [Android] Support startup histogram - fix missing copyright notice Created 7 years, 3 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
« no previous file with comments | « chrome/app/chrome_main_delegate.cc ('k') | chrome/browser/android/uma_utils.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 "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/debug/trace_event.h" 9 #include "base/debug/trace_event.h"
10 #include "chrome/browser/android/bookmarks_bridge.h" 10 #include "chrome/browser/android/bookmarks_bridge.h"
11 #include "chrome/browser/android/chrome_web_contents_delegate_android.h" 11 #include "chrome/browser/android/chrome_web_contents_delegate_android.h"
12 #include "chrome/browser/android/content_view_util.h" 12 #include "chrome/browser/android/content_view_util.h"
13 #include "chrome/browser/android/dev_tools_server.h" 13 #include "chrome/browser/android/dev_tools_server.h"
14 #include "chrome/browser/android/favicon_helper.h" 14 #include "chrome/browser/android/favicon_helper.h"
15 #include "chrome/browser/android/field_trial_helper.h" 15 #include "chrome/browser/android/field_trial_helper.h"
16 #include "chrome/browser/android/foreign_session_helper.h" 16 #include "chrome/browser/android/foreign_session_helper.h"
17 #include "chrome/browser/android/intent_helper.h" 17 #include "chrome/browser/android/intent_helper.h"
18 #include "chrome/browser/android/most_visited_sites.h" 18 #include "chrome/browser/android/most_visited_sites.h"
19 #include "chrome/browser/android/omnibox/omnibox_prerender.h" 19 #include "chrome/browser/android/omnibox/omnibox_prerender.h"
20 #include "chrome/browser/android/provider/chrome_browser_provider.h" 20 #include "chrome/browser/android/provider/chrome_browser_provider.h"
21 #include "chrome/browser/android/shortcut_helper.h" 21 #include "chrome/browser/android/shortcut_helper.h"
22 #include "chrome/browser/android/signin/signin_manager_android.h" 22 #include "chrome/browser/android/signin/signin_manager_android.h"
23 #include "chrome/browser/android/tab_android.h" 23 #include "chrome/browser/android/tab_android.h"
24 #include "chrome/browser/android/uma_utils.h"
24 #include "chrome/browser/autofill/android/personal_data_manager_android.h" 25 #include "chrome/browser/autofill/android/personal_data_manager_android.h"
25 #include "chrome/browser/history/android/sqlite_cursor.h" 26 #include "chrome/browser/history/android/sqlite_cursor.h"
26 #include "chrome/browser/lifetime/application_lifetime_android.h" 27 #include "chrome/browser/lifetime/application_lifetime_android.h"
27 #include "chrome/browser/profiles/profile_android.h" 28 #include "chrome/browser/profiles/profile_android.h"
28 #include "chrome/browser/search_engines/template_url_service_android.h" 29 #include "chrome/browser/search_engines/template_url_service_android.h"
29 #include "chrome/browser/signin/android_profile_oauth2_token_service.h" 30 #include "chrome/browser/signin/android_profile_oauth2_token_service.h"
30 #include "chrome/browser/speech/tts_android.h" 31 #include "chrome/browser/speech/tts_android.h"
31 #include "chrome/browser/sync/profile_sync_service_android.h" 32 #include "chrome/browser/sync/profile_sync_service_android.h"
32 #include "chrome/browser/ui/android/autofill/autofill_dialog_controller_android. h" 33 #include "chrome/browser/ui/android/autofill/autofill_dialog_controller_android. h"
33 #include "chrome/browser/ui/android/autofill/autofill_dialog_result.h" 34 #include "chrome/browser/ui/android/autofill/autofill_dialog_result.h"
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
86 { "MostVisitedSites", RegisterMostVisitedSites }, 87 { "MostVisitedSites", RegisterMostVisitedSites },
87 { "NavigationPopup", NavigationPopup::RegisterNavigationPopup }, 88 { "NavigationPopup", NavigationPopup::RegisterNavigationPopup },
88 { "OmniboxPrerender", RegisterOmniboxPrerender }, 89 { "OmniboxPrerender", RegisterOmniboxPrerender },
89 { "PersonalDataManagerAndroid", 90 { "PersonalDataManagerAndroid",
90 autofill::PersonalDataManagerAndroid::Register }, 91 autofill::PersonalDataManagerAndroid::Register },
91 { "ProfileAndroid", ProfileAndroid::RegisterProfileAndroid }, 92 { "ProfileAndroid", ProfileAndroid::RegisterProfileAndroid },
92 { "ProfileSyncService", ProfileSyncServiceAndroid::Register }, 93 { "ProfileSyncService", ProfileSyncServiceAndroid::Register },
93 { "SigninManager", SigninManagerAndroid::Register }, 94 { "SigninManager", SigninManagerAndroid::Register },
94 { "SqliteCursor", SQLiteCursor::RegisterSqliteCursor }, 95 { "SqliteCursor", SQLiteCursor::RegisterSqliteCursor },
95 { "SSLClientCertificateRequest", RegisterSSLClientCertificateRequestAndroid }, 96 { "SSLClientCertificateRequest", RegisterSSLClientCertificateRequestAndroid },
97 { "StartupMetricUtils", RegisterStartupMetricUtils },
96 { "TabAndroid", TabAndroid::RegisterTabAndroid }, 98 { "TabAndroid", TabAndroid::RegisterTabAndroid },
97 { "TemplateUrlServiceAndroid", TemplateUrlServiceAndroid::Register }, 99 { "TemplateUrlServiceAndroid", TemplateUrlServiceAndroid::Register },
98 { "TtsPlatformImpl", TtsPlatformImplAndroid::Register }, 100 { "TtsPlatformImpl", TtsPlatformImplAndroid::Register },
99 { "ValidationMessageBubbleAndroid", 101 { "ValidationMessageBubbleAndroid",
100 ValidationMessageBubbleAndroid::Register }, 102 ValidationMessageBubbleAndroid::Register },
101 { "WebsiteSettingsPopupAndroid", 103 { "WebsiteSettingsPopupAndroid",
102 WebsiteSettingsPopupAndroid::RegisterWebsiteSettingsPopupAndroid }, 104 WebsiteSettingsPopupAndroid::RegisterWebsiteSettingsPopupAndroid },
103 }; 105 };
104 106
105 bool RegisterJni(JNIEnv* env) { 107 bool RegisterJni(JNIEnv* env) {
106 TRACE_EVENT0("startup", "chrome_android::RegisterJni"); 108 TRACE_EVENT0("startup", "chrome_android::RegisterJni");
107 return RegisterNativeMethods(env, kChromeRegisteredMethods, 109 return RegisterNativeMethods(env, kChromeRegisteredMethods,
108 arraysize(kChromeRegisteredMethods)); 110 arraysize(kChromeRegisteredMethods));
109 } 111 }
110 112
111 } // namespace android 113 } // namespace android
112 } // namespace chrome 114 } // namespace chrome
OLDNEW
« no previous file with comments | « chrome/app/chrome_main_delegate.cc ('k') | chrome/browser/android/uma_utils.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698