Index: chrome/common/autofill_messages.h |
diff --git a/chrome/common/autofill_messages.h b/chrome/common/autofill_messages.h |
index 95adf65037ee559396cf9b5c19429f54f60a60c7..6de5dfe898e9070507d1cdd30a4a2345d64753b4 100644 |
--- a/chrome/common/autofill_messages.h |
+++ b/chrome/common/autofill_messages.h |
@@ -95,6 +95,22 @@ IPC_MESSAGE_ROUTED1( |
IPC_MESSAGE_ROUTED1(AutofillMsg_SelectAutofillSuggestionAtIndex, |
int /* listIndex */) |
+// Tells the renderer that the next form will be filled for real. |
+IPC_MESSAGE_ROUTED0(AutofillMsg_SetAutofillActionFill); |
+ |
+// Clears the currently displayed Autofill results. |
+IPC_MESSAGE_ROUTED0(AutofillMsg_ClearForm); |
+ |
+// Tells the renderer that the next form will be filled as a preview. |
+IPC_MESSAGE_ROUTED0(AutofillMsg_SetAutofillActionPreview); |
+ |
+// Tells the renderer that the Autofill previewed form should be cleared. |
+IPC_MESSAGE_ROUTED0(AutofillMsg_ClearPreviewedForm); |
+ |
+// Sets the currently selected nodes value. |
+IPC_MESSAGE_ROUTED1(AutofillMsg_SetNodeText, |
+ string16); |
+ |
// Autofill messages sent from the renderer to the browser. |
// Notification that forms have been seen that are candidates for |