Chromium Code Reviews| Index: public/web/WebAutofillClient.h |
| diff --git a/public/web/WebAutofillClient.h b/public/web/WebAutofillClient.h |
| index bb808083cb955f9b8995b5d968dc776794ea0441..ae33b33f6570b584c61bb51b6ed6cc6260572833 100644 |
| --- a/public/web/WebAutofillClient.h |
| +++ b/public/web/WebAutofillClient.h |
| @@ -33,6 +33,7 @@ |
| namespace blink { |
| +class WebFormControlElement; |
| class WebFormElement; |
| class WebFrame; |
| class WebInputElement; |
| @@ -58,7 +59,7 @@ public: |
| // These methods are called when the users edits a text-field. |
| virtual void textFieldDidEndEditing(const WebInputElement&) { } |
| - virtual void textFieldDidChange(const WebInputElement&) { } |
| + virtual void textFieldDidChange(const WebFormControlElement&) { } |
|
tkent
2014/02/06 00:05:45
Is the WebAutofillClient implementation in Chromiu
ziran.sun
2014/02/06 10:32:17
Yes. Check line 93 https://codereview.chromium.org
tkent
2014/02/07 06:04:09
It's almost impossible to land a Chromium CL and a
|
| virtual void textFieldDidReceiveKeyDown(const WebInputElement&, const WebKeyboardEvent&) { } |
| // This is called when a datalist indicator is clicked. |
| virtual void openTextDataListChooser(const WebInputElement&) { } |