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 |