Chromium Code Reviews| Index: chrome/browser/autofill/autofill_download.h |
| =================================================================== |
| --- chrome/browser/autofill/autofill_download.h (revision 71100) |
| +++ chrome/browser/autofill/autofill_download.h (working copy) |
| @@ -70,7 +70,10 @@ |
| // even if there was no actual trip over the wire. |
| // |form| - form sent in this request. |
| // |form_was_matched| - true if form was matched by the AutoFill. |
| - bool StartUploadRequest(const FormStructure& form, bool form_was_matched); |
| + // |present_data| - hexadecimal representation of the bitfield of the data |
| + // presence in user profile. |
| + bool StartUploadRequest(const FormStructure& form, bool form_was_matched, |
| + char const* present_data); |
|
dhollowa
2011/01/11 23:29:29
We should use const std::string& for |present_data
GeorgeY
2011/01/13 23:22:28
Does not really matter much: the data passed direc
|
| // Cancels pending request. |
| // |form_signature| - signature of the form being cancelled. Warning: |