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

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

Issue 2839683002: Logs different SaveCardPrompt histogram names depending on if user (Closed)
Patch Set: Android compile error. 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.h
diff --git a/components/autofill/core/browser/autofill_metrics.h b/components/autofill/core/browser/autofill_metrics.h
index 58ab8d26aa06d64471b9fe76613a5405d877f61c..a2ef3eb841e6796bf5b12dbaa6227fabfb55a90d 100644
--- a/components/autofill/core/browser/autofill_metrics.h
+++ b/components/autofill/core/browser/autofill_metrics.h
@@ -645,12 +645,16 @@ class AutofillMetrics {
};
static void LogCardUploadDecisionMetric(CardUploadDecisionMetric metric);
- static void LogCreditCardInfoBarMetric(InfoBarMetric metric,
- bool is_uploading);
+ static void LogCreditCardInfoBarMetric(
+ InfoBarMetric metric,
+ bool is_uploading,
+ bool did_user_accept_previous_save_credit_card_prompt);
static void LogCreditCardFillingInfoBarMetric(InfoBarMetric metric);
- static void LogSaveCardPromptMetric(SaveCardPromptMetric metric,
- bool is_uploading,
- bool is_reshow);
+ static void LogSaveCardPromptMetric(
+ SaveCardPromptMetric metric,
+ bool is_uploading,
+ bool is_reshow,
+ bool did_user_accept_previous_save_credit_card_prompt);
static void LogScanCreditCardPromptMetric(ScanCreditCardPromptMetric metric);
// Should be called when credit card scan is finished. |duration| should be

Powered by Google App Engine
This is Rietveld 408576698