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

Unified Diff: components/autofill/core/browser/autofill_metrics.cc

Issue 2839683002: Logs different SaveCardPrompt histogram names depending on if user (Closed)
Patch Set: Uses no-suffix, 'PreviouslyAccepted' and 'PreviouslyDenied' for the save card prompt histograms. Created 3 years, 8 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 side-by-side diff with in-line comments
Download patch
Index: components/autofill/core/browser/autofill_metrics.cc
diff --git a/components/autofill/core/browser/autofill_metrics.cc b/components/autofill/core/browser/autofill_metrics.cc
index 77442395f201073a68feac7dc21890f545343393..c25988fbb571ce78e3067b2fc9e21cccd704879a 100644
--- a/components/autofill/core/browser/autofill_metrics.cc
+++ b/components/autofill/core/browser/autofill_metrics.cc
@@ -80,6 +80,20 @@ enum FieldTypeGroupForMetrics {
NUM_FIELD_TYPE_GROUPS_FOR_METRICS
};
+std::string PreviousSaveCreditCardPromptUserDecisionToString(
+ int previous_save_credit_card_prompt_user_decision) {
+ DCHECK_LT(previous_save_credit_card_prompt_user_decision,
+ prefs::NUM_PREVIOUS_SAVE_CREDIT_CARD_PROMPT_USER_DECISIONS);
+ std::string previous_response;
+ if (previous_save_credit_card_prompt_user_decision ==
+ prefs::PREVIOUS_SAVE_CREDIT_CARD_PROMPT_USER_DECISION_ACCEPTED)
+ previous_response = ".PreviouslyAccepted";
+ else if (previous_save_credit_card_prompt_user_decision ==
+ prefs::PREVIOUS_SAVE_CREDIT_CARD_PROMPT_USER_DECISION_DENIED)
+ previous_response = ".PreviouslyDenied";
+ return previous_response;
Mark P 2017/04/27 22:52:58 optional nit while I'm here: DCHECK_EQ(PREVIOUS_SA
csashi 2017/04/27 23:37:51 Done.
+}
+
} // namespace
// First, translates |field_type| to the corresponding logical |group| from
@@ -298,16 +312,18 @@ void AutofillMetrics::LogCardUploadDecisionMetric(
}
// static
-void AutofillMetrics::LogCreditCardInfoBarMetric(InfoBarMetric metric,
- bool is_uploading) {
+void AutofillMetrics::LogCreditCardInfoBarMetric(
+ InfoBarMetric metric,
+ bool is_uploading,
+ int previous_save_credit_card_prompt_user_decision) {
DCHECK_LT(metric, NUM_INFO_BAR_METRICS);
- if (is_uploading) {
- UMA_HISTOGRAM_ENUMERATION("Autofill.CreditCardInfoBar.Server", metric,
- NUM_INFO_BAR_METRICS);
- } else {
- UMA_HISTOGRAM_ENUMERATION("Autofill.CreditCardInfoBar.Local", metric,
- NUM_INFO_BAR_METRICS);
- }
+
+ std::string destination = is_uploading ? ".Server" : ".Local";
+ LogUMAHistogramEnumeration(
+ "Autofill.CreditCardInfoBar" + destination +
+ PreviousSaveCreditCardPromptUserDecisionToString(
Mark P 2017/04/27 22:52:58 This structure makes is to there is no longer a si
csashi 2017/04/27 23:37:51 It is useful to view the aggregate but I would rat
+ previous_save_credit_card_prompt_user_decision),
+ metric, NUM_INFO_BAR_METRICS);
}
// static
@@ -318,15 +334,19 @@ void AutofillMetrics::LogCreditCardFillingInfoBarMetric(InfoBarMetric metric) {
}
// static
-void AutofillMetrics::LogSaveCardPromptMetric(SaveCardPromptMetric metric,
- bool is_uploading,
- bool is_reshow) {
+void AutofillMetrics::LogSaveCardPromptMetric(
+ SaveCardPromptMetric metric,
+ bool is_uploading,
+ bool is_reshow,
+ int previous_save_credit_card_prompt_user_decision) {
DCHECK_LT(metric, NUM_SAVE_CARD_PROMPT_METRICS);
std::string destination = is_uploading ? ".Upload" : ".Local";
std::string show = is_reshow ? ".Reshows" : ".FirstShow";
LogUMAHistogramEnumeration(
- "Autofill.SaveCreditCardPrompt" + destination + show, metric,
- NUM_SAVE_CARD_PROMPT_METRICS);
+ "Autofill.SaveCreditCardPrompt" + destination + show +
+ PreviousSaveCreditCardPromptUserDecisionToString(
+ previous_save_credit_card_prompt_user_decision),
+ metric, NUM_SAVE_CARD_PROMPT_METRICS);
}
// static

Powered by Google App Engine
This is Rietveld 408576698