Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(9241)

Unified Diff: chrome/common/autofill_messages.h

Issue 9235072: Adding Mouse Support for new GTK Autofill (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: First Draft Created 8 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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

Powered by Google App Engine
This is Rietveld 408576698