Index: chrome/common/autofill_messages.h |
diff --git a/chrome/common/autofill_messages.h b/chrome/common/autofill_messages.h |
index d7a4b0502c8ce35ef3d5ce7bbd17ced8b6c58ad4..4bc1f81a6a28faedfda8045da8154112044cd989 100644 |
--- a/chrome/common/autofill_messages.h |
+++ b/chrome/common/autofill_messages.h |
@@ -111,6 +111,14 @@ IPC_MESSAGE_ROUTED0(AutofillMsg_ClearPreviewedForm) |
IPC_MESSAGE_ROUTED1(AutofillMsg_SetNodeText, |
string16) |
+// Tells the renderer that the password field has handled a key press. |
+IPC_MESSAGE_ROUTED1(AutofillMsg_PasswordHandleKeyDown, |
+ int /* key_code */) |
+ |
+// Tells the renderer that the password field has accept the suggestion. |
+IPC_MESSAGE_ROUTED1(AutofillMsg_PasswordAcceptAutofillSuggestion, |
+ string16) |
+ |
// Autofill messages sent from the renderer to the browser. |
// Notification that forms have been seen that are candidates for |
@@ -181,3 +189,13 @@ IPC_MESSAGE_ROUTED0(AutofillHostMsg_DidEndTextFieldEditing) |
// Instructs the browser to hide the Autofill popup. |
IPC_MESSAGE_ROUTED0(AutofillHostMsg_HideAutofillPopup) |
+ |
+// Instruct the browser that the frame is closing. |
+IPC_MESSAGE_ROUTED1(AutofillHostMsg_FrameClosing, |
+ long long /* frame_id */) |
+ |
+// Instruct the browse that a password form has been filled. |
+IPC_MESSAGE_ROUTED3(AutofillHostMsg_FillPasswordForm, |
+ webkit::forms::FormField, /* the user name field */ |
+ webkit::forms::PasswordFormFillData, /*the form fill data */ |
+ long long /* frame_id */) |