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

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 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_;

Powered by Google App Engine
This is Rietveld 408576698