diff options
Diffstat (limited to 'Source/WebKit/chromium/public/WebAutofillClient.h')
| -rw-r--r-- | Source/WebKit/chromium/public/WebAutofillClient.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Source/WebKit/chromium/public/WebAutofillClient.h b/Source/WebKit/chromium/public/WebAutofillClient.h index 7b48f57db..7424c3fec 100644 --- a/Source/WebKit/chromium/public/WebAutofillClient.h +++ b/Source/WebKit/chromium/public/WebAutofillClient.h @@ -33,6 +33,8 @@ namespace WebKit { +class WebFormElement; +class WebFrame; class WebInputElement; class WebKeyboardEvent; class WebNode; @@ -75,6 +77,9 @@ public: // keys to navigate outside the range of possible selections. virtual void didClearAutofillSelection(const WebNode&) { } + // Informs the browser an interactive autocomplete has been requested. + virtual void didRequestAutocomplete(WebFrame*, const WebFormElement&) { } + // Instructs the browser to remove the Autocomplete entry specified from // its DB. virtual void removeAutocompleteSuggestion(const WebString& name, |
