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

Unified Diff: chrome/browser/renderer_host/render_view_host_delegate.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/browser/renderer_host/render_view_host.cc ('k') | chrome/common/render_messages.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/renderer_host/render_view_host_delegate.h
===================================================================
--- chrome/browser/renderer_host/render_view_host_delegate.h (revision 39310)
+++ chrome/browser/renderer_host/render_view_host_delegate.h (working copy)
@@ -18,8 +18,8 @@
struct ContextMenuParams;
class FilePath;
+struct FormData;
class GURL;
-class Value;
struct NativeWebKeyboardEvent;
class NavigationEntry;
class Profile;
@@ -31,6 +31,7 @@
class SkBitmap;
class TabContents;
struct ThumbnailScore;
+class Value;
struct ViewHostMsg_DidPrintPage_Params;
struct ViewHostMsg_FrameNavigate_Params;
struct WebDropData;
@@ -403,6 +404,14 @@
// RenderViewHost::AutoFillSuggestionsReturned has been called.
virtual bool GetAutoFillSuggestions(
int query_id, const webkit_glue::FormField& field) = 0;
+
+ // Called to fill the FormData object with AutoFill profile information that
+ // matches the |name|, |label| key. Returns true to indicate that
+ // RenderViewHost::AutoFillFormDataFilled has been called.
+ virtual bool FillAutoFillFormData(int query_id,
+ const FormData& form,
+ const string16& name,
+ const string16& label) = 0;
};
// ---------------------------------------------------------------------------
« no previous file with comments | « chrome/browser/renderer_host/render_view_host.cc ('k') | chrome/common/render_messages.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698