summaryrefslogtreecommitdiffstats
path: root/chrome/browser/render_view_host.h
diff options
context:
space:
mode:
authorpetersont@google.com <petersont@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2008-11-05 20:26:28 +0000
committerpetersont@google.com <petersont@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2008-11-05 20:26:28 +0000
commit6f2ff8526c54090bf6afe9c80f2d63551231e997 (patch)
tree2cacbf423441a4f442e8ec01a176c519154c7112 /chrome/browser/render_view_host.h
parent2b481f8d533c08824d3aeeeb9a0407b596077c16 (diff)
downloadchromium_src-6f2ff8526c54090bf6afe9c80f2d63551231e997.zip
chromium_src-6f2ff8526c54090bf6afe9c80f2d63551231e997.tar.gz
chromium_src-6f2ff8526c54090bf6afe9c80f2d63551231e997.tar.bz2
Added functions to WebDatabase and WebDataService for recording frequent entries in text input elements in forms. Also added the class AutofillManager which gets instantiated once per WebContents and provides an API from which the database can be easily accessed to provide a list of possible desired values to be entered in a text field given what the user has already typed there.
Review URL: http://codereview.chromium.org/8845 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@4809 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/render_view_host.h')
-rw-r--r--chrome/browser/render_view_host.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/chrome/browser/render_view_host.h b/chrome/browser/render_view_host.h
index 551c5b8..7f7d298 100644
--- a/chrome/browser/render_view_host.h
+++ b/chrome/browser/render_view_host.h
@@ -16,6 +16,7 @@
#include "chrome/personalization/personalization.h"
#endif
#include "webkit/glue/password_form_dom_manager.h"
+#include "webkit/glue/autofill_form.h"
enum ConsoleMessageLevel;
class NavigationEntry;
@@ -462,6 +463,7 @@ class RenderViewHost : public RenderWidgetHost {
const std::string& json_arguments,
IPC::Message* reply_msg);
void OnMsgPasswordFormsSeen(const std::vector<PasswordForm>& forms);
+ void OnMsgAutofillFormSubmitted(const AutofillForm& forms);
void OnMsgStartDragging(const WebDropData& drop_data);
void OnUpdateDragCursor(bool is_drop_target);
void OnTakeFocus(bool reverse);