| Index: components/autofill/core/browser/autofill_manager.h
|
| diff --git a/components/autofill/core/browser/autofill_manager.h b/components/autofill/core/browser/autofill_manager.h
|
| index e8847ca8489a1a2c5061700a2b5ce9236f5be5d1..856be0e989ba737b169f5ee3db628941cfe3cd1a 100644
|
| --- a/components/autofill/core/browser/autofill_manager.h
|
| +++ b/components/autofill/core/browser/autofill_manager.h
|
| @@ -26,7 +26,6 @@
|
| #include "components/autofill/core/browser/form_structure.h"
|
| #include "components/autofill/core/browser/personal_data_manager.h"
|
| #include "components/autofill/core/common/form_data.h"
|
| -#include "components/autofill/core/common/forms_seen_state.h"
|
|
|
| class GURL;
|
|
|
| @@ -119,8 +118,7 @@ class AutofillManager : public AutofillDownloadManager::Observer {
|
| void SetTestDelegate(autofill::AutofillManagerTestDelegate* delegate);
|
|
|
| void OnFormsSeen(const std::vector<FormData>& forms,
|
| - const base::TimeTicks& timestamp,
|
| - autofill::FormsSeenState state);
|
| + const base::TimeTicks& timestamp);
|
|
|
| // Processes the submitted |form|, saving any new Autofill data and uploading
|
| // the possible field types for the submitted fields to the crowdsourcing
|
| @@ -312,8 +310,8 @@ class AutofillManager : public AutofillDownloadManager::Observer {
|
| bool user_did_autofill_;
|
| // Has the user edited a field that was previously autofilled?
|
| bool user_did_edit_autofilled_field_;
|
| - // When the page finished loading.
|
| - base::TimeTicks forms_loaded_timestamp_;
|
| + // When the form finished loading.
|
| + std::map<FormData, base::TimeTicks> forms_loaded_timestamps_;
|
| // When the user first interacted with a potentially fillable form on this
|
| // page.
|
| base::TimeTicks initial_interaction_timestamp_;
|
|
|