diff options
Diffstat (limited to 'webkit/api/public/WebViewClient.h')
-rw-r--r-- | webkit/api/public/WebViewClient.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/webkit/api/public/WebViewClient.h b/webkit/api/public/WebViewClient.h index e613cac..725d785 100644 --- a/webkit/api/public/WebViewClient.h +++ b/webkit/api/public/WebViewClient.h @@ -252,6 +252,21 @@ namespace WebKit { virtual void didUpdateInspectorSettings() = 0; + // Autofill ------------------------------------------------------------ + + // Queries the browser for suggestions to be shown for the form text + // field named |name|. |value| is the text entered by the user so + // far and the WebNode corresponds to the input field. + virtual void queryAutofillSuggestions(const WebNode&, + const WebString& name, + const WebString& value) = 0; + + // Instructs the browser to remove the autofill entry specified from + // its DB. + virtual void removeAutofillSuggestions(const WebString& name, + const WebString& value) = 0; + + // FIXME need to something for: // OnPasswordFormsSeen // OnAutofillFormSubmitted |