summaryrefslogtreecommitdiffstats
path: root/chrome/common/render_messages_internal.h
diff options
context:
space:
mode:
authorjhawkins@chromium.org <jhawkins@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-02-09 18:52:50 +0000
committerjhawkins@chromium.org <jhawkins@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-02-09 18:52:50 +0000
commit38377654a4cf59397e92890e62cd203971531ac4 (patch)
treea69cafbeb540cb0f24d14c13174e8039056cbfcd /chrome/common/render_messages_internal.h
parent592ca909efa35c0000b349285b059700ae543ee4 (diff)
downloadchromium_src-38377654a4cf59397e92890e62cd203971531ac4.zip
chromium_src-38377654a4cf59397e92890e62cd203971531ac4.tar.gz
chromium_src-38377654a4cf59397e92890e62cd203971531ac4.tar.bz2
Send forms seen in the renderer to the AutoFillManager.
BUG=none TEST=none Review URL: http://codereview.chromium.org/584009 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@38479 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common/render_messages_internal.h')
-rw-r--r--chrome/common/render_messages_internal.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/chrome/common/render_messages_internal.h b/chrome/common/render_messages_internal.h
index 3a58772..591dbb1 100644
--- a/chrome/common/render_messages_internal.h
+++ b/chrome/common/render_messages_internal.h
@@ -1341,8 +1341,13 @@ IPC_BEGIN_MESSAGES(ViewHost)
string16 /* title */,
FilePath /* Default file name */)
+ // Notification that forms have been seen that are candidates for
+ // filling/submitting by the AutoFillManager.
+ IPC_MESSAGE_ROUTED1(ViewHostMsg_FormsSeen,
+ std::vector<webkit_glue::FormFieldValues> /* forms */)
+
// Notification that password forms have been seen that are candidates for
- // filling/submitting by the password manager
+ // filling/submitting by the password manager.
IPC_MESSAGE_ROUTED1(ViewHostMsg_PasswordFormsSeen,
std::vector<webkit_glue::PasswordForm> /* forms */)