Index: public/web/WebAutofillClient.h |
diff --git a/public/web/WebAutofillClient.h b/public/web/WebAutofillClient.h |
index 1c5289a6f7b87a97580bb300a66f38426b71acb0..7f8a30fa6e212b292f11c3177c2c492e2a2d4c1b 100644 |
--- a/public/web/WebAutofillClient.h |
+++ b/public/web/WebAutofillClient.h |
@@ -31,6 +31,8 @@ |
#ifndef WebAutofillClient_h |
#define WebAutofillClient_h |
+#include "WebFrame.h" |
esprehn
2014/05/29 01:04:54
Why add WebFrame.
Evan Stade
2014/05/29 20:53:57
removed
|
+ |
namespace blink { |
class WebFormControlElement; |
@@ -38,14 +40,13 @@ 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(const WebFormElement&, const WebAutocompleteParams&) { } |
+ virtual void didRequestAutocomplete(const WebFormElement&) { } |
// These methods are called when the users edits a text-field. |
virtual void textFieldDidEndEditing(const WebInputElement&) { } |