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

Unified Diff: chrome/common/render_messages_internal.h

Issue 651002: AutoFill forms. We do this by responding to a message from WebKit which send... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 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
« no previous file with comments | « chrome/common/render_messages.h ('k') | chrome/renderer/form_manager.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/common/render_messages_internal.h
===================================================================
--- chrome/common/render_messages_internal.h (revision 39310)
+++ chrome/common/render_messages_internal.h (working copy)
@@ -627,6 +627,12 @@
std::vector<string16> /* suggestions */,
int /* index of default suggestion */)
+ // Reply to the ViewHostMsg_FillAutoFillFormData message with the
+ // AutoFill form data.
+ IPC_MESSAGE_ROUTED2(ViewMsg_AutoFillFormDataFilled,
+ int /* id of the request message */,
+ FormData /* form data */)
+
// Sent by the Browser process to alert a window about whether a blocked
// popup notification is visible. The renderer assumes every new window is a
// blocked popup until notified otherwise.
@@ -1734,6 +1740,14 @@
int /* id of this message */,
webkit_glue::FormField /* the form field */)
+ // Instructs the browser to fill in the values for a form using AutoFill
+ // profile data.
+ IPC_MESSAGE_ROUTED4(ViewHostMsg_FillAutoFillFormData,
+ int /* id of this message */,
+ FormData /* the form */,
+ string16 /* profile name */,
+ string16 /* profile label */)
+
// Instructs the browser to remove the specified autofill-entry from the
// database.
IPC_MESSAGE_ROUTED2(ViewHostMsg_RemoveAutofillEntry,
« no previous file with comments | « chrome/common/render_messages.h ('k') | chrome/renderer/form_manager.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698