Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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 #include "chrome/browser/chromeos/arc/arc_optin_uma.h" | 5 #include "chrome/browser/chromeos/arc/arc_optin_uma.h" |
| 6 | 6 |
| 7 #include <string> | 7 #include <string> |
| 8 | 8 |
| 9 #include "base/metrics/histogram_functions.h" | 9 #include "base/metrics/histogram_functions.h" |
| 10 #include "base/metrics/histogram_macros.h" | 10 #include "base/metrics/histogram_macros.h" |
| (...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 57 base::UmaHistogramCustomTimes(histogram_name, elapsed_time, | 57 base::UmaHistogramCustomTimes(histogram_name, elapsed_time, |
| 58 base::TimeDelta::FromSeconds(1) /* minimum */, | 58 base::TimeDelta::FromSeconds(1) /* minimum */, |
| 59 base::TimeDelta::FromMinutes(3) /* maximum */, | 59 base::TimeDelta::FromMinutes(3) /* maximum */, |
| 60 50 /* bucket_count */); | 60 50 /* bucket_count */); |
| 61 } | 61 } |
| 62 | 62 |
| 63 void UpdateAuthCheckinAttempts(int32_t num_attempts) { | 63 void UpdateAuthCheckinAttempts(int32_t num_attempts) { |
| 64 UMA_HISTOGRAM_SPARSE_SLOWLY("ArcAuth.CheckinAttempts", num_attempts); | 64 UMA_HISTOGRAM_SPARSE_SLOWLY("ArcAuth.CheckinAttempts", num_attempts); |
| 65 } | 65 } |
| 66 | 66 |
| 67 void UpdateAuthAccountCheckStatus(mojom::AccountCheckStatus status) { | |
| 68 DCHECK(status <= mojom::AccountCheckStatus::CHECK_FAILED); | |
|
Ilya Sherman
2017/03/27 19:03:28
nit: DCHECK_LE
khmel
2017/03/27 19:29:29
Done.
| |
| 69 UMA_HISTOGRAM_ENUMERATION( | |
| 70 "ArcAuth.AccountCheckStatus", static_cast<int>(status), | |
| 71 static_cast<int>(mojom::AccountCheckStatus::CHECK_FAILED) + 1); | |
|
Ilya Sherman
2017/03/27 19:03:28
Hmm, I'm a bit nervous about requiring anyone who
khmel
2017/03/27 19:29:29
IIUC enum in mojom is rather constants (from my ex
Ilya Sherman
2017/03/27 20:07:37
I'm not following what this means. Aren't all enu
khmel
2017/03/27 20:35:57
I got feeling that is slower than 'enum' histogram
Ilya Sherman
2017/03/27 20:54:29
It is a bit slower, yes. It's probably not a mean
khmel
2017/03/27 21:01:41
This code is invoked very infrequently. So sparse
| |
| 72 } | |
| 73 | |
| 67 void UpdateSilentAuthCodeUMA(OptInSilentAuthCode state) { | 74 void UpdateSilentAuthCodeUMA(OptInSilentAuthCode state) { |
| 68 UMA_HISTOGRAM_ENUMERATION("Arc.OptInSilentAuthCode", static_cast<int>(state), | 75 UMA_HISTOGRAM_ENUMERATION("Arc.OptInSilentAuthCode", static_cast<int>(state), |
| 69 static_cast<int>(OptInSilentAuthCode::SIZE)); | 76 static_cast<int>(OptInSilentAuthCode::SIZE)); |
| 70 } | 77 } |
| 71 | 78 |
| 72 std::ostream& operator<<(std::ostream& os, const ProvisioningResult& result) { | 79 std::ostream& operator<<(std::ostream& os, const ProvisioningResult& result) { |
| 73 #define MAP_PROVISIONING_RESULT(name) \ | 80 #define MAP_PROVISIONING_RESULT(name) \ |
| 74 case ProvisioningResult::name: \ | 81 case ProvisioningResult::name: \ |
| 75 return os << #name | 82 return os << #name |
| 76 | 83 |
| (...skipping 24 matching lines...) Expand all Loading... | |
| 101 | 108 |
| 102 #undef MAP_PROVISIONING_RESULT | 109 #undef MAP_PROVISIONING_RESULT |
| 103 | 110 |
| 104 // Some compilers report an error even if all values of an enum-class are | 111 // Some compilers report an error even if all values of an enum-class are |
| 105 // covered exhaustively in a switch statement. | 112 // covered exhaustively in a switch statement. |
| 106 NOTREACHED() << "Invalid value " << static_cast<int>(result); | 113 NOTREACHED() << "Invalid value " << static_cast<int>(result); |
| 107 return os; | 114 return os; |
| 108 } | 115 } |
| 109 | 116 |
| 110 } // namespace arc | 117 } // namespace arc |
| OLD | NEW |