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

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

Issue 270673003: UMA metrics - number of accounts per profile and account reconciler. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Initial Upload - Metrics, Account Reconciler and UMA configs 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 #ifndef COMPONENTS_SIGNIN_CORE_BROWSER_SIGNIN_METRICS_H_
6 #define COMPONENTS_SIGNIN_CORE_BROWSER_SIGNIN_METRICS_H_
7
8 #include <stddef.h>
9 #include <string>
10
11 #include "base/basictypes.h"
12
13 namespace base {
14 class FilePath;
15 }
16
17 class SigninMetrics {
18 public:
19 static void LogSigninAccountReconciliation(int total_number_accounts,
Roger Tawa OOO till Jul 10th 2014/05/07 17:05:38 Should have a comment describing what this functio
Mike Lerman 2014/05/07 18:49:37 Done.
20 int count_added_to_cookie_jar, int count_added_to_token,
21 bool primary_accounts_same, bool is_first_reconcile);
22 };
Roger Tawa OOO till Jul 10th 2014/05/07 17:05:38 New code should not use classes that to define a s
Mike Lerman 2014/05/07 18:49:37 Done.
23
24
25 #endif // COMPONENTS_SIGNIN_CORE_BROWSER_SIGNIN_METRICS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698