| Index: Source/core/html/HTMLTextFormControlElement.h
|
| diff --git a/Source/core/html/HTMLTextFormControlElement.h b/Source/core/html/HTMLTextFormControlElement.h
|
| index 1d15a95231e9ef2d143916d294fd8ea82ad63705..d339447e605f81290924cc7a6401c0fd326120ed 100644
|
| --- a/Source/core/html/HTMLTextFormControlElement.h
|
| +++ b/Source/core/html/HTMLTextFormControlElement.h
|
| @@ -134,7 +134,7 @@ private:
|
| int computeSelectionEnd() const;
|
| TextFieldSelectionDirection computeSelectionDirection() const;
|
|
|
| - virtual void dispatchFocusEvent(Element* oldFocusedElement, FocusType) override final;
|
| + virtual void dispatchFocusEvent(Element* oldFocusedElement, WebFocusType) override final;
|
| virtual void dispatchBlurEvent(Element* newFocusedElement) override final;
|
| void scheduleSelectEvent();
|
|
|
| @@ -143,7 +143,7 @@ private:
|
| // Returns true if suggested value is empty. Used to check placeholder visibility.
|
| virtual bool isEmptySuggestedValue() const { return true; }
|
| // Called in dispatchFocusEvent(), after placeholder process, before calling parent's dispatchFocusEvent().
|
| - virtual void handleFocusEvent(Element* /* oldFocusedNode */, FocusType) { }
|
| + virtual void handleFocusEvent(Element* /* oldFocusedNode */, WebFocusType) { }
|
| // Called in dispatchBlurEvent(), after placeholder process, before calling parent's dispatchBlurEvent().
|
| virtual void handleBlurEvent() { }
|
|
|
|
|