| Index: Source/core/html/forms/EmailInputType.h
|
| diff --git a/Source/core/html/forms/EmailInputType.h b/Source/core/html/forms/EmailInputType.h
|
| index 5274ebcef445797747e1a8feaf0a86d1941c9a9b..d49ce0a904c47b3a7ab84786f4eab4ce879d01dd 100644
|
| --- a/Source/core/html/forms/EmailInputType.h
|
| +++ b/Source/core/html/forms/EmailInputType.h
|
| @@ -35,21 +35,21 @@
|
|
|
| namespace blink {
|
|
|
| -class EmailInputType FINAL : public BaseTextInputType {
|
| +class EmailInputType final : public BaseTextInputType {
|
| public:
|
| static PassRefPtrWillBeRawPtr<InputType> create(HTMLInputElement&);
|
|
|
| private:
|
| EmailInputType(HTMLInputElement& element) : BaseTextInputType(element) { }
|
| - virtual void countUsage() OVERRIDE;
|
| - virtual const AtomicString& formControlType() const OVERRIDE;
|
| - virtual bool typeMismatchFor(const String&) const OVERRIDE;
|
| - virtual bool typeMismatch() const OVERRIDE;
|
| - virtual String typeMismatchText() const OVERRIDE;
|
| - virtual bool supportsSelectionAPI() const OVERRIDE;
|
| - virtual String sanitizeValue(const String&) const OVERRIDE;
|
| - virtual String convertFromVisibleValue(const String&) const OVERRIDE;
|
| - virtual String visibleValue() const OVERRIDE;
|
| + virtual void countUsage() override;
|
| + virtual const AtomicString& formControlType() const override;
|
| + virtual bool typeMismatchFor(const String&) const override;
|
| + virtual bool typeMismatch() const override;
|
| + virtual String typeMismatchText() const override;
|
| + virtual bool supportsSelectionAPI() const override;
|
| + virtual String sanitizeValue(const String&) const override;
|
| + virtual String convertFromVisibleValue(const String&) const override;
|
| + virtual String visibleValue() const override;
|
| String convertEmailAddressToUnicode(const String&) const;
|
| String findInvalidAddress(const String&) const;
|
| };
|
|
|