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

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: 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..a9cb4e4fa9430fcfca701d6b13c980d0d3b7c8c2 100644
--- a/chrome/common/autofill_messages.h
+++ b/chrome/common/autofill_messages.h
@@ -95,6 +95,19 @@ 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 hte next form will be filled for real.
+IPC_MESSAGE_ROUTED0(AutofillMsg_SetAutofillActionPreview);
+
+// 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