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

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 71495)
+++ chrome/browser/autofill/autofill_manager.h (working copy)
@@ -68,7 +68,7 @@
virtual bool IsAutoFillEnabled() const;
// Handles the form data submitted by the user.
- void HandleSubmit();
+ void SaveFormData();
// Uploads the form data to the AutoFill server.
void UploadFormData();
@@ -211,6 +211,9 @@
// Deletes itself when closed.
AutoFillCCInfoBarDelegate* cc_infobar_;
+ // Bitfield that indicates which fields were autofilled for last Credit Card.
+ std::string data_autofilled_;
dhollowa 2011/01/18 22:31:26 This is unused.
GeorgeY 2011/01/20 19:12:29 removed
+
// GUID to ID mapping. We keep two maps to convert back and forth.
std::map<std::string, int> guid_id_map_;
std::map<int, std::string> id_guid_map_;

Powered by Google App Engine
This is Rietveld 408576698