| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 #ifndef COMPONENTS_SIGNIN_CORE_BROWSER_SIGNIN_METRICS_H_ | 5 #ifndef COMPONENTS_SIGNIN_CORE_BROWSER_SIGNIN_METRICS_H_ |
| 6 #define COMPONENTS_SIGNIN_CORE_BROWSER_SIGNIN_METRICS_H_ | 6 #define COMPONENTS_SIGNIN_CORE_BROWSER_SIGNIN_METRICS_H_ |
| 7 | 7 |
| 8 namespace signin_metrics { | 8 namespace signin_metrics { |
| 9 | 9 |
| 10 // Enum for the ways in which primary account detection is done. | 10 // Enum for the ways in which primary account detection is done. |
| (...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 66 bool primary_accounts_same, | 66 bool primary_accounts_same, |
| 67 bool is_first_reconcile, | 67 bool is_first_reconcile, |
| 68 int pre_count_gaia_cookies); | 68 int pre_count_gaia_cookies); |
| 69 | 69 |
| 70 // Track a successful signin. | 70 // Track a successful signin. |
| 71 void LogSigninAddAccount(); | 71 void LogSigninAddAccount(); |
| 72 | 72 |
| 73 // Track a profile signout. | 73 // Track a profile signout. |
| 74 void LogSignout(ProfileSignout metric); | 74 void LogSignout(ProfileSignout metric); |
| 75 | 75 |
| 76 // Tracks whether the external connection results were all fetched before |
| 77 // the reconcilor tried to use them with MergeSession. |
| 78 void LogExternalCcResultFetches(bool fetches_completed); |
| 79 |
| 76 } // namespace signin_metrics | 80 } // namespace signin_metrics |
| 77 | 81 |
| 78 #endif // COMPONENTS_SIGNIN_CORE_BROWSER_SIGNIN_METRICS_H_ | 82 #endif // COMPONENTS_SIGNIN_CORE_BROWSER_SIGNIN_METRICS_H_ |
| OLD | NEW |