| Index: chrome/browser/autofill/autofill_manager.h
|
| ===================================================================
|
| --- chrome/browser/autofill/autofill_manager.h (revision 70750)
|
| +++ chrome/browser/autofill/autofill_manager.h (working copy)
|
| @@ -177,7 +177,15 @@
|
| // May be NULL. NULL indicates OTR.
|
| PersonalDataManager* personal_data_;
|
|
|
| - std::list<std::string> autofilled_forms_signatures_;
|
| + struct AutofilledFormInfo {
|
| + // Signature of the form that was autofilled.
|
| + std::string form_signature;
|
| + // Guid of the address profile that was used for autofill.
|
| + std::string profile_guid;
|
| + // Guid of the credit card profile that was used for autofill.
|
| + std::string cc_guid;
|
| + };
|
| + std::list<AutofilledFormInfo> autofilled_forms_signatures_;
|
| // Handles queries and uploads to AutoFill servers.
|
| AutoFillDownloadManager download_manager_;
|
|
|
|
|