Index: chrome/browser/autofill/autofill_download.cc |
=================================================================== |
--- chrome/browser/autofill/autofill_download.cc (revision 71100) |
+++ chrome/browser/autofill/autofill_download.cc (working copy) |
@@ -86,7 +86,8 @@ |
} |
bool AutoFillDownloadManager::StartUploadRequest( |
- const FormStructure& form, bool form_was_matched) { |
+ const FormStructure& form, bool form_was_matched, |
+ char const* present_data) { |
if (next_upload_request_ > base::Time::Now()) { |
// We are in back-off mode: do not do the request. |
return false; |
@@ -101,7 +102,7 @@ |
return false; |
} |
std::string form_xml; |
- if (!form.EncodeUploadRequest(form_was_matched, &form_xml)) |
+ if (!form.EncodeUploadRequest(form_was_matched, present_data, &form_xml)) |
return false; |
FormRequestData request_data; |