| Index: Source/core/html/HTMLTextFormControlElement.h
|
| diff --git a/Source/core/html/HTMLTextFormControlElement.h b/Source/core/html/HTMLTextFormControlElement.h
|
| index 0b9f2295b7430e4cb1d5c6a44a8fd0c10dc97dba..d5bca9ac29544d32e2a82af0b257750b8df864a0 100644
|
| --- a/Source/core/html/HTMLTextFormControlElement.h
|
| +++ b/Source/core/html/HTMLTextFormControlElement.h
|
| @@ -52,7 +52,7 @@ public:
|
| void forwardEvent(Event*);
|
|
|
|
|
| - virtual InsertionNotificationRequest insertedInto(ContainerNode*) OVERRIDE;
|
| + virtual InsertionNotificationRequest insertedInto(ContainerNode*) override;
|
|
|
| // The derived class should return true if placeholder processing is needed.
|
| virtual bool supportsPlaceholder() const = 0;
|
| @@ -76,7 +76,7 @@ public:
|
| void setSelectionRange(int start, int end, TextFieldSelectionDirection = SelectionHasNoDirection, SelectionOption = ChangeSelection);
|
| PassRefPtrWillBeRawPtr<Range> selection() const;
|
|
|
| - virtual void dispatchFormControlChangeEvent() OVERRIDE FINAL;
|
| + virtual void dispatchFormControlChangeEvent() override final;
|
|
|
| virtual String value() const = 0;
|
|
|
| @@ -104,7 +104,7 @@ protected:
|
| bool isPlaceholderEmpty() const;
|
| virtual void updatePlaceholderText() = 0;
|
|
|
| - virtual void parseAttribute(const QualifiedName&, const AtomicString&) OVERRIDE;
|
| + virtual void parseAttribute(const QualifiedName&, const AtomicString&) override;
|
|
|
| void cacheSelection(int start, int end, TextFieldSelectionDirection direction)
|
| {
|
| @@ -116,7 +116,7 @@ protected:
|
|
|
| void restoreCachedSelection();
|
|
|
| - virtual void defaultEventHandler(Event*) OVERRIDE;
|
| + virtual void defaultEventHandler(Event*) override;
|
| virtual void subtreeHasChanged() = 0;
|
|
|
| void setLastChangeWasNotUserEdit() { m_lastChangeWasUserEdit = false; }
|
| @@ -130,8 +130,8 @@ private:
|
| int computeSelectionEnd() const;
|
| TextFieldSelectionDirection computeSelectionDirection() const;
|
|
|
| - virtual void dispatchFocusEvent(Element* oldFocusedElement, FocusType) OVERRIDE FINAL;
|
| - virtual void dispatchBlurEvent(Element* newFocusedElement) OVERRIDE FINAL;
|
| + virtual void dispatchFocusEvent(Element* oldFocusedElement, FocusType) override final;
|
| + virtual void dispatchBlurEvent(Element* newFocusedElement) override final;
|
|
|
| // Returns true if user-editable value is empty. Used to check placeholder visibility.
|
| virtual bool isEmptyValue() const = 0;
|
|
|