Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1227)

Unified Diff: Source/core/html/forms/EmailInputType.h

Issue 934163004: Modernize coding style in core/html/forms/. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rebase Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/core/html/forms/DateTimeLocalInputType.h ('k') | Source/core/html/forms/FileInputType.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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;
};
« no previous file with comments | « Source/core/html/forms/DateTimeLocalInputType.h ('k') | Source/core/html/forms/FileInputType.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698