Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright (c) 2014 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #include "components/signin/core/browser/signin_metrics.h" | |
| 6 | |
| 7 #include "base/logging.h" | |
| 8 #include "base/metrics/histogram.h" | |
| 9 #include "base/metrics/user_metrics.h" | |
| 10 | |
| 11 namespace signin_metrics { | |
| 12 | |
| 13 void LogSigninAccountReconciliation(int total_number_accounts, | |
| 14 int count_added_to_cookie_jar, | |
| 15 int count_added_to_token, | |
| 16 bool primary_accounts_same, | |
| 17 bool is_first_reconcile) { | |
| 18 UMA_HISTOGRAM_COUNTS_100("Profile.NumberOfAccountsPerProfile", | |
| 19 total_number_accounts); | |
| 20 // We want to include zeroes in the counts of added accounts to easily | |
| 21 // capture _relatively_ how often we merge accounts. | |
| 22 if (is_first_reconcile) { | |
| 23 UMA_HISTOGRAM_COUNTS_100("Signin.Reconciler.AddedToCookieJarFirstRun", | |
|
Alexei Svitkine (slow)
2014/05/09 14:16:16
How about Signin.Reconciler.AddedToCookieJar.First
Mike Lerman
2014/05/09 20:13:27
Done.
| |
| 24 count_added_to_cookie_jar); | |
| 25 UMA_HISTOGRAM_COUNTS_100("Signin.Reconciler.AddedToChromeFirstRun", | |
| 26 count_added_to_token); | |
| 27 UMA_HISTOGRAM_BOOLEAN("Signin.Reconciler.DifferentPrimaryAccountsFirstRun", | |
| 28 !primary_accounts_same); | |
| 29 } else { | |
| 30 UMA_HISTOGRAM_COUNTS_100("Signin.Reconciler.AddedToCookieJarSubsequentRun", | |
| 31 count_added_to_cookie_jar); | |
| 32 UMA_HISTOGRAM_COUNTS_100("Signin.Reconciler.AddedToChromeSubsequentRun", | |
| 33 count_added_to_token); | |
| 34 UMA_HISTOGRAM_BOOLEAN( | |
| 35 "Signin.Reconciler.DifferentPrimaryAccountsSubsequentRun", | |
| 36 !primary_accounts_same); | |
| 37 } | |
| 38 } | |
| 39 | |
| 40 } // namespace signin_metrics | |
| OLD | NEW |