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

Unified Diff: components/autofill/content/common/autofill_messages.h

Issue 148413002: Add "previewing on hover" support for single-field autocomplete input (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Addressed Ilya's 2nd set comments Created 6 years, 10 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: components/autofill/content/common/autofill_messages.h
diff --git a/components/autofill/content/common/autofill_messages.h b/components/autofill/content/common/autofill_messages.h
index a2b7b07307a255b7dddbfc39310638c8c9380f4a..5cc2b69fea20a6f46280da4f14acdd8eef332115 100644
--- a/components/autofill/content/common/autofill_messages.h
+++ b/components/autofill/content/common/autofill_messages.h
@@ -124,8 +124,12 @@ IPC_MESSAGE_ROUTED0(AutofillMsg_SetAutofillActionPreview)
IPC_MESSAGE_ROUTED0(AutofillMsg_ClearPreviewedForm)
// Sets the currently selected node's value.
-IPC_MESSAGE_ROUTED1(AutofillMsg_SetNodeText,
- base::string16 /* new node text */)
+IPC_MESSAGE_ROUTED1(AutofillMsg_FillFieldWithValue,
+ base::string16 /* value */)
+
+// Sets suggested value for the currently previewed node
Ilya Sherman 2014/03/01 02:57:37 nit: Please end the sentence with a period.
Tom Sepez 2014/03/03 19:28:46 nit: Sets the suggested value ...
ziran.sun 2014/03/04 15:30:19 Done.
ziran.sun 2014/03/04 15:30:19 Done.
+IPC_MESSAGE_ROUTED1(AutofillMsg_PreviewFieldWithValue,
+ base::string16 /* value */)
// Sets the currently selected node's value to be the given data list value.
IPC_MESSAGE_ROUTED1(AutofillMsg_AcceptDataListSuggestion,

Powered by Google App Engine
This is Rietveld 408576698