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 #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_ | |
| OLD | NEW |