Chromium Code Reviews| Index: chrome/browser/autofill/autofill_manager.h |
| =================================================================== |
| --- chrome/browser/autofill/autofill_manager.h (revision 71100) |
| +++ chrome/browser/autofill/autofill_manager.h (working copy) |
| @@ -185,7 +185,15 @@ |
| // May be NULL. NULL indicates OTR. |
| PersonalDataManager* personal_data_; |
| - std::list<std::string> autofilled_forms_signatures_; |
| + struct AutofilledFormInfo { |
|
dhollowa
2011/01/11 23:29:29
I think |FilledFormInfo| would be preferable. We'
GeorgeY
2011/01/13 23:22:28
removed in new version.
|
| + // Signature of the form that was autofilled. |
| + std::string form_signature; |
| + // Guid of the address profile that was used for autofill. |
|
dhollowa
2011/01/11 23:29:29
s/Guid/GUID
s/autofill/AutoFill/
GeorgeY
2011/01/13 23:22:28
removed in new version.
|
| + std::string profile_guid; |
| + // Guid of the credit card profile that was used for autofill. |
|
dhollowa
2011/01/11 23:29:29
s/Guid/GUID
s/autofill/AutoFill/
GeorgeY
2011/01/13 23:22:28
removed in new version.
|
| + std::string cc_guid; |
| + }; |
| + std::list<AutofilledFormInfo> autofilled_forms_signatures_; |
| // Handles queries and uploads to AutoFill servers. |
| AutoFillDownloadManager download_manager_; |