| Index: chrome/common/autofill_messages.h
|
| diff --git a/chrome/common/autofill_messages.h b/chrome/common/autofill_messages.h
|
| index 75cc2fb52bf5fa8d4bd02c0dcfb4b4d2588dadd7..8140d6649545aa3883da498235523f1d8eebbd47 100644
|
| --- a/chrome/common/autofill_messages.h
|
| +++ b/chrome/common/autofill_messages.h
|
| @@ -104,13 +104,15 @@ IPC_MESSAGE_ROUTED1(AutofillHostMsg_PasswordFormsVisible,
|
| std::vector<webkit_glue::PasswordForm> /* forms */)
|
|
|
| // Notification that a form has been submitted. The user hit the button.
|
| -IPC_MESSAGE_ROUTED1(AutofillHostMsg_FormSubmitted,
|
| - webkit_glue::FormData /* form */)
|
| +IPC_MESSAGE_ROUTED2(AutofillHostMsg_FormSubmitted,
|
| + webkit_glue::FormData /* form */,
|
| + int64 /* timestamp */)
|
|
|
| // Notification that a form field's value has changed.
|
| -IPC_MESSAGE_ROUTED2(AutofillHostMsg_TextFieldDidChange,
|
| +IPC_MESSAGE_ROUTED3(AutofillHostMsg_TextFieldDidChange,
|
| webkit_glue::FormData /* the form */,
|
| - webkit_glue::FormField /* the form field */)
|
| + webkit_glue::FormField /* the form field */,
|
| + int64 /* timestamp */)
|
|
|
| // Queries the browser for Autofill suggestions for a form input field.
|
| IPC_MESSAGE_ROUTED3(AutofillHostMsg_QueryFormFieldAutofill,
|
| @@ -134,7 +136,8 @@ IPC_MESSAGE_ROUTED4(AutofillHostMsg_FillAutofillFormData,
|
| IPC_MESSAGE_ROUTED0(AutofillHostMsg_DidPreviewAutofillFormData)
|
|
|
| // Sent when a form is filled with Autofill suggestions.
|
| -IPC_MESSAGE_ROUTED0(AutofillHostMsg_DidFillAutofillFormData)
|
| +IPC_MESSAGE_ROUTED1(AutofillHostMsg_DidFillAutofillFormData,
|
| + int64 /* timestamp */)
|
|
|
| // Instructs the browser to remove the specified Autocomplete entry from the
|
| // database.
|
|
|