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

Unified Diff: chrome/common/autofill_messages.h

Issue 11270018: [autofill] Adding new API to request an interactive autocomplete UI flow. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: newest Created 8 years, 2 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 faf7e3c514a488a213c194d6d58fdd5825fabfb4..93846a5711621e717ca48bda56c777d30b8e6be1 100644
--- a/chrome/common/autofill_messages.h
+++ b/chrome/common/autofill_messages.h
@@ -135,6 +135,11 @@ IPC_MESSAGE_ROUTED1(AutofillMsg_AcceptPasswordAutofillSuggestion,
IPC_MESSAGE_ROUTED1(AutofillMsg_FormNotBlacklisted,
content::PasswordForm /* form checked */)
+// Sent when interactive autocomplete finishes.
+IPC_MESSAGE_ROUTED2(AutofillMsg_RequestAutocompleteFinished,
+ int /* query_id */,
+ int /* result */)
+
// Autofill messages sent from the renderer to the browser.
// Notification that forms have been seen that are candidates for
@@ -191,6 +196,11 @@ IPC_MESSAGE_ROUTED0(AutofillHostMsg_DidPreviewAutofillFormData)
IPC_MESSAGE_ROUTED1(AutofillHostMsg_DidFillAutofillFormData,
base::TimeTicks /* timestamp */)
+// Sent when a form receives a request to do interactive autocomplete.
+IPC_MESSAGE_ROUTED2(AutofillHostMsg_RequestAutocomplete,
+ int /* query_id */,
Ilya Sherman 2012/10/27 07:44:11 nit: Update this param name (this isn't really a q
Dan Beam 2012/10/29 19:17:05 how is this not a query_id? it's a magically auto-
Dan Beam 2012/10/29 20:58:29 btw, this was removed in favor of a bool to show w
Ilya Sherman 2012/10/29 21:27:47 query_id was probably just not a very good name to
+ FormData /* form_data */)
+
// Instructs the browser to remove the specified Autocomplete entry from the
// database.
IPC_MESSAGE_ROUTED2(AutofillHostMsg_RemoveAutocompleteEntry,

Powered by Google App Engine
This is Rietveld 408576698