| Index: public/web/WebAutofillClient.h
|
| diff --git a/public/web/WebAutofillClient.h b/public/web/WebAutofillClient.h
|
| index d57d591bb0d9f3a1db227fdacec9ab57c5474907..ac331d1882e7a969ea72086fb924560bc7cd2afa 100644
|
| --- a/public/web/WebAutofillClient.h
|
| +++ b/public/web/WebAutofillClient.h
|
| @@ -31,8 +31,6 @@
|
| #ifndef WebAutofillClient_h
|
| #define WebAutofillClient_h
|
|
|
| -#include "WebFrame.h"
|
| -
|
| namespace blink {
|
|
|
| class WebFormControlElement;
|
| @@ -40,13 +38,14 @@ class WebFormElement;
|
| class WebInputElement;
|
| class WebKeyboardEvent;
|
| class WebNode;
|
| +struct WebAutocompleteParams;
|
|
|
| template <typename T> class WebVector;
|
|
|
| class WebAutofillClient {
|
| public:
|
| // Informs the browser an interactive autocomplete has been requested.
|
| - virtual void didRequestAutocomplete(WebLocalFrame*, const WebFormElement&) { }
|
| + virtual void didRequestAutocomplete(const WebFormElement&, const WebAutocompleteParams&) { }
|
|
|
| // These methods are called when the users edits a text-field.
|
| virtual void textFieldDidEndEditing(const WebInputElement&) { }
|
|
|