| Index: Source/core/html/forms/EmailInputType.h
|
| diff --git a/Source/core/html/forms/EmailInputType.h b/Source/core/html/forms/EmailInputType.h
|
| index c3581f370c25498824b8c6ca46a51a0726a477de..180486b1456015c0330b6eaa9ba39a0cd29398ce 100644
|
| --- a/Source/core/html/forms/EmailInputType.h
|
| +++ b/Source/core/html/forms/EmailInputType.h
|
| @@ -41,16 +41,17 @@ public:
|
|
|
| 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 void warnIfValueIsInvalid(const String&) 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;
|
| + void countUsage() override;
|
| + const AtomicString& formControlType() const override;
|
| + bool typeMismatchFor(const String&) const override;
|
| + bool typeMismatch() const override;
|
| + String typeMismatchText() const override;
|
| + void warnIfValueIsInvalid(const String&) const override;
|
| + bool supportsSelectionAPI() const override;
|
| + String sanitizeValue(const String&) const override;
|
| + String convertFromVisibleValue(const String&) const override;
|
| + String visibleValue() const override;
|
| +
|
| String convertEmailAddressToUnicode(const String&) const;
|
| String findInvalidAddress(const String&) const;
|
| };
|
|
|