| Index: Source/web/ChromeClientImpl.h
|
| diff --git a/Source/web/ChromeClientImpl.h b/Source/web/ChromeClientImpl.h
|
| index 665ced3c7ec0fdf3ab69cb2dda694e3d4b00261c..4ddc612d5c74d7a8d3306947da5a14342aa6bc4f 100644
|
| --- a/Source/web/ChromeClientImpl.h
|
| +++ b/Source/web/ChromeClientImpl.h
|
| @@ -48,6 +48,7 @@ class Element;
|
| class Event;
|
| class FileChooser;
|
| class GraphicsLayerFactory;
|
| +class HTMLFormControlElement;
|
| class HTMLInputElement;
|
| class KeyboardEvent;
|
| class PopupMenuClient;
|
| @@ -176,7 +177,10 @@ public:
|
| virtual void requestPointerUnlock() OVERRIDE;
|
|
|
| virtual void didAssociateFormControls(const Vector<RefPtr<WebCore::Element> >&) OVERRIDE;
|
| + // FIXME: This function is to be removed once both chromium and blink changes
|
| + // for BUG332557 are in.
|
| virtual void didChangeValueInTextField(WebCore::HTMLInputElement&) OVERRIDE;
|
| + virtual void didChangeValueInTextField(WebCore::HTMLFormControlElement&) OVERRIDE;
|
| virtual void didEndEditingOnTextField(WebCore::HTMLInputElement&) OVERRIDE;
|
| virtual void handleKeyboardEventOnTextField(WebCore::HTMLInputElement&, WebCore::KeyboardEvent&) OVERRIDE;
|
|
|
|
|