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

Side by Side Diff: components/signin/core/browser/signin_metrics.cc

Issue 270673003: UMA metrics - number of accounts per profile and account reconciler. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix compile error, out-of-order parameter Created 6 years, 7 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 | Annotate | Revision Log
OLDNEW
(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.AddedToCookieJar.FirstRun",
24 count_added_to_cookie_jar);
25 UMA_HISTOGRAM_COUNTS_100("Signin.Reconciler.AddedToChrome.FirstRun",
26 count_added_to_token);
27 UMA_HISTOGRAM_BOOLEAN("Signin.Reconciler.DifferentPrimaryAccounts.FirstRun",
28 !primary_accounts_same);
29 } else {
30 UMA_HISTOGRAM_COUNTS_100("Signin.Reconciler.AddedToCookieJar.SubsequentRun",
31 count_added_to_cookie_jar);
32 UMA_HISTOGRAM_COUNTS_100("Signin.Reconciler.AddedToChrome.SubsequentRun",
33 count_added_to_token);
34 UMA_HISTOGRAM_BOOLEAN(
35 "Signin.Reconciler.DifferentPrimaryAccounts.SubsequentRun",
36 !primary_accounts_same);
37 }
38 }
39
40 } // namespace signin_metrics
OLDNEW
« no previous file with comments | « components/signin/core/browser/signin_metrics.h ('k') | tools/metrics/actions/extract_actions.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698