| Index: Source/core/html/forms/BaseTextInputType.h
|
| diff --git a/Source/core/html/forms/BaseTextInputType.h b/Source/core/html/forms/BaseTextInputType.h
|
| index b93d8491901a68408facf8baeaded2e7ccdca5cd..763dc20002454b8eeddbb6627710c058e795b4da 100644
|
| --- a/Source/core/html/forms/BaseTextInputType.h
|
| +++ b/Source/core/html/forms/BaseTextInputType.h
|
| @@ -42,13 +42,13 @@ protected:
|
| BaseTextInputType(HTMLInputElement& element) : TextFieldInputType(element) { }
|
|
|
| private:
|
| - virtual bool tooLong(const String&, HTMLTextFormControlElement::NeedsToCheckDirtyFlag) const override final;
|
| - virtual bool tooShort(const String&, HTMLTextFormControlElement::NeedsToCheckDirtyFlag) const override final;
|
| - virtual int maxLength() const override final;
|
| - virtual int minLength() const override final;
|
| - virtual bool patternMismatch(const String&) const override final;
|
| - virtual bool supportsPlaceholder() const override final;
|
| - virtual bool supportsSelectionAPI() const override;
|
| + bool tooLong(const String&, HTMLTextFormControlElement::NeedsToCheckDirtyFlag) const final;
|
| + bool tooShort(const String&, HTMLTextFormControlElement::NeedsToCheckDirtyFlag) const final;
|
| + int maxLength() const final;
|
| + int minLength() const final;
|
| + bool patternMismatch(const String&) const final;
|
| + bool supportsPlaceholder() const final;
|
| + bool supportsSelectionAPI() const override;
|
| };
|
|
|
| } // namespace blink
|
|
|