| 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 ff13a655a9c6695d6c402baca7c33217bf22f7d8..aed621c0495ebd1781a5c5ffb0209d9a26a9cf10 100644
|
| --- a/components/autofill/core/browser/autofill_metrics.cc
|
| +++ b/components/autofill/core/browser/autofill_metrics.cc
|
| @@ -641,6 +641,11 @@ void AutofillMetrics::LogNumberOfProfilesRemovedDuringDedupe(
|
| std::min(int(num_removed), 50));
|
| }
|
|
|
| +// static
|
| +void AutofillMetrics::LogIsQueriedCreditCardFormSecure(bool is_secure) {
|
| + UMA_HISTOGRAM_BOOLEAN("Autofill.QueriedCreditCardFormIsSecure", is_secure);
|
| +}
|
| +
|
| AutofillMetrics::FormEventLogger::FormEventLogger(bool is_for_credit_card)
|
| : is_for_credit_card_(is_for_credit_card),
|
| is_server_data_available_(false),
|
|
|