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