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

Unified Diff: chrome/browser/renderer_host/render_view_host_delegate.h

Issue 339030: Add initial implementation of AutoFill++. This implementation is hidden behi... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 2 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
Index: chrome/browser/renderer_host/render_view_host_delegate.h
===================================================================
--- chrome/browser/renderer_host/render_view_host_delegate.h (revision 30247)
+++ chrome/browser/renderer_host/render_view_host_delegate.h (working copy)
@@ -365,6 +365,16 @@
const string16& value) = 0;
};
+ // AutoFill ------------------------------------------------------------------
+ // Interface for AutoFill-related functions.
+
+ class AutoFill {
+ public:
+ // Called when the user submits a form.
+ virtual void FormFieldValuesSubmitted(
+ const webkit_glue::FormFieldValues& form) = 0;
+ };
+
// ---------------------------------------------------------------------------
// Returns the current delegate associated with a feature. May return NULL if
@@ -377,6 +387,7 @@
virtual Printing* GetPrintingDelegate();
virtual FavIcon* GetFavIconDelegate();
virtual FormFieldHistory* GetFormFieldHistoryDelegate();
+ virtual AutoFill* GetAutoFillDelegate();
// Gets the URL that is currently being displayed, if there is one.
virtual const GURL& GetURL() const;
« no previous file with comments | « chrome/browser/renderer_host/render_view_host.cc ('k') | chrome/browser/renderer_host/render_view_host_delegate.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698