| 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 c4f24c57f5cc0b4f4e5676e1643ebac4150275f4..6fe8a34ebc3dc7dad4a921b7fc6616b5b374abe7 100644
|
| --- a/components/autofill/core/browser/autofill_metrics.h
|
| +++ b/components/autofill/core/browser/autofill_metrics.h
|
| @@ -681,6 +681,10 @@ class AutofillMetrics {
|
| is_local_data_available_ = is_local_data_available;
|
| }
|
|
|
| + inline void set_is_context_secure(bool is_context_secure) {
|
| + is_context_secure_ = is_context_secure;
|
| + }
|
| +
|
| void OnDidInteractWithAutofillableForm();
|
|
|
| void OnDidPollSuggestions(const FormFieldData& field);
|
| @@ -705,6 +709,7 @@ class AutofillMetrics {
|
| bool is_for_credit_card_;
|
| bool is_server_data_available_;
|
| bool is_local_data_available_;
|
| + bool is_context_secure_;
|
| bool has_logged_interacted_;
|
| bool has_logged_suggestions_shown_;
|
| bool has_logged_masked_server_card_suggestion_selected_;
|
|
|