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

Unified Diff: Source/core/html/forms/BaseTextInputType.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
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
« no previous file with comments | « Source/core/html/forms/BaseMultipleFieldsDateAndTimeInputType.h ('k') | Source/core/html/forms/ButtonInputType.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698