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

Unified Diff: chrome/renderer/render_view.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/renderer/form_manager.cc ('k') | chrome/renderer/render_view.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/renderer/render_view.h
===================================================================
--- chrome/renderer/render_view.h (revision 39310)
+++ chrome/renderer/render_view.h (working copy)
@@ -34,6 +34,7 @@
#include "chrome/renderer/dom_ui_bindings.h"
#include "chrome/renderer/extensions/extension_process_bindings.h"
#include "chrome/renderer/external_host_bindings.h"
+#include "chrome/renderer/form_manager.h"
#include "chrome/renderer/notification_provider.h"
#include "chrome/renderer/render_widget.h"
#include "chrome/renderer/render_view_visitor.h"
@@ -259,6 +260,10 @@
const WebKit::WebString& value);
virtual void removeAutofillSuggestions(
const WebKit::WebString& name, const WebKit::WebString& value);
+ virtual void didAcceptAutoFillSuggestion(
+ const WebKit::WebNode& node,
+ const WebKit::WebString& name,
+ const WebKit::WebString& label);
virtual WebKit::WebNotificationPresenter* GetNotificationPresenter() {
return notification_provider_.get();
@@ -711,6 +716,9 @@
const std::vector<string16>& suggestions,
int default_suggestions_index);
+ // Notification that we have received AutoFill form data.
+ void OnAutoFillFormDataFilled(int query_id, const FormData& form);
+
// Message that the popup notification has been shown or hidden.
void OnPopupNotificationVisibilityChanged(bool visible);
@@ -1108,6 +1116,9 @@
TextTranslatorImpl text_translator_;
scoped_ptr<PageTranslator> page_translator_;
+ // The FormManager for this RenderView.
+ FormManager form_manager_;
+
#if defined(OS_MACOSX)
// All the currently active plugin delegates for this RenderView; kept so that
// we can enumerate them to send updates about things like window location
« no previous file with comments | « chrome/renderer/form_manager.cc ('k') | chrome/renderer/render_view.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698