Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(496)

Unified Diff: chrome/browser/autofill/autofill_manager.h

Issue 6213002: Propagate correct data to the Toolbar servers (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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_;

Powered by Google App Engine
This is Rietveld 408576698