Index: chrome/common/autofill_messages.h |
diff --git a/chrome/common/autofill_messages.h b/chrome/common/autofill_messages.h |
index 95adf65037ee559396cf9b5c19429f54f60a60c7..6f73018315a95b8c68eb0e212a09c6824e8fcf95 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 as a preview. |
+IPC_MESSAGE_ROUTED0(AutofillMsg_SetAutofillActionFill); |
+ |
+// Tells the render that the next form will be filled for real. |
Ilya Sherman
2012/02/04 04:10:52
nit: "render" -> "renderer"
csharp
2012/02/07 22:30:58
Done.
|
+IPC_MESSAGE_ROUTED0(AutofillMsg_SetAutofillActionPreview); |
+ |
+// Tells the render that the autofill selection has been cleared. |
Ilya Sherman
2012/02/04 04:10:52
nit: "autofill" -> "Autofill"
Ilya Sherman
2012/02/04 04:10:52
It's not clear to me from reading this comment why
csharp
2012/02/07 22:30:58
Done.
|
+IPC_MESSAGE_ROUTED0(AutofillMsg_ClearAutofillSelection); |
+ |
+// Clears the currently displayed Autofill results. |
+IPC_MESSAGE_ROUTED0(AutofillMsg_ClearForm); |
+ |
+// 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 |