| Index: chrome/browser/ui/autofill/autofill_dialog_controller_impl.h
|
| diff --git a/chrome/browser/ui/autofill/autofill_dialog_controller_impl.h b/chrome/browser/ui/autofill/autofill_dialog_controller_impl.h
|
| index e9ff94259dd63ddd627abe378045b3b4daa5ec4c..f5236f7a63ce57fbe4ca3885161ec885a68c6b03 100644
|
| --- a/chrome/browser/ui/autofill/autofill_dialog_controller_impl.h
|
| +++ b/chrome/browser/ui/autofill/autofill_dialog_controller_impl.h
|
| @@ -19,6 +19,7 @@
|
| #include "chrome/browser/ui/autofill/autofill_popup_controller_impl.h"
|
| #include "chrome/browser/ui/autofill/country_combobox_model.h"
|
| #include "components/autofill/browser/autofill_manager_delegate.h"
|
| +#include "components/autofill/browser/autofill_metrics.h"
|
| #include "components/autofill/browser/autofill_popup_delegate.h"
|
| #include "components/autofill/browser/field_types.h"
|
| #include "components/autofill/browser/form_structure.h"
|
| @@ -34,7 +35,6 @@
|
| #include "ui/base/models/simple_menu_model.h"
|
| #include "ui/base/ui_base_types.h"
|
|
|
| -class AutofillMetrics;
|
| class AutofillPopupControllerImpl;
|
| class FormGroup;
|
| class Profile;
|
| @@ -298,6 +298,8 @@ class AutofillDialogControllerImpl : public AutofillDialogController,
|
| // in order to fill |form_structure_| and pass data back to the invoking page.
|
| void FinishSubmit();
|
|
|
| + AutofillMetrics::DialogInitialUserStateMetric GetInitialUserState() const;
|
| +
|
| // The |profile| for |contents_|.
|
| Profile* const profile_;
|
|
|
| @@ -381,6 +383,7 @@ class AutofillDialogControllerImpl : public AutofillDialogController,
|
| const AutofillMetrics& metric_logger_;
|
| base::Time dialog_shown_timestamp_;
|
| base::Time autocheckout_started_timestamp_;
|
| + AutofillMetrics::DialogInitialUserStateMetric initial_user_state_;
|
|
|
| // Whether this is an Autocheckout or a requestAutocomplete dialog.
|
| const DialogType dialog_type_;
|
|
|