diff options
Diffstat (limited to 'webkit/glue/webview_delegate.h')
-rw-r--r-- | webkit/glue/webview_delegate.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/webkit/glue/webview_delegate.h b/webkit/glue/webview_delegate.h index 415510e..1ce50c5 100644 --- a/webkit/glue/webview_delegate.h +++ b/webkit/glue/webview_delegate.h @@ -43,6 +43,7 @@ namespace gfx { struct PasswordForm; struct WebDropData; struct WebPreferences; +class AutofillForm; class SkBitmap; class WebError; class WebFrame; @@ -447,6 +448,12 @@ class WebViewDelegate : virtual public WebWidgetDelegate { const std::vector<PasswordForm>& forms) { } + // Notification of the submission of a form so that its contents can be + // recorded for future autofilling. + virtual void OnAutofillFormSubmitted(WebView* webview, + const AutofillForm& form) { + } + // virtual void OnUnloadListenerChanged(WebView* webview, WebFrame* webframe) { } |