| Index: third_party/WebKit/Source/core/html/HTMLTextFormControlElement.h
|
| diff --git a/third_party/WebKit/Source/core/html/HTMLTextFormControlElement.h b/third_party/WebKit/Source/core/html/HTMLTextFormControlElement.h
|
| index 5d69b4e0ce3cdf38475de935e47474302e1c738c..ef93ccc896ea4ed98caa5433643da279e133c814 100644
|
| --- a/third_party/WebKit/Source/core/html/HTMLTextFormControlElement.h
|
| +++ b/third_party/WebKit/Source/core/html/HTMLTextFormControlElement.h
|
| @@ -87,6 +87,8 @@ public:
|
| void setAutocapitalize(const AtomicString&);
|
|
|
| void dispatchFormControlChangeEvent() final;
|
| + void dispatchFocusEvent(Element* oldFocusedElement, WebFocusType, InputDeviceCapabilities* sourceCapabilities) final;
|
| + void dispatchBlurEvent(Element* newFocusedElement, WebFocusType, InputDeviceCapabilities* sourceCapabilities) final;
|
|
|
| virtual String value() const = 0;
|
| virtual void setValue(const String&, TextFieldEventBehavior = DispatchNoEvent) = 0;
|
| @@ -143,8 +145,6 @@ private:
|
| int computeSelectionEnd() const;
|
| TextFieldSelectionDirection computeSelectionDirection() const;
|
|
|
| - void dispatchFocusEvent(Element* oldFocusedElement, WebFocusType, InputDeviceCapabilities* sourceCapabilities) final;
|
| - void dispatchBlurEvent(Element* newFocusedElement, WebFocusType, InputDeviceCapabilities* sourceCapabilities) final;
|
| void scheduleSelectEvent();
|
|
|
| // Returns true if user-editable value is empty. Used to check placeholder visibility.
|
|
|