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

Unified Diff: Source/core/html/forms/TimeInputType.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/TextInputType.h ('k') | Source/core/html/forms/TypeAhead.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/html/forms/TimeInputType.h
diff --git a/Source/core/html/forms/TimeInputType.h b/Source/core/html/forms/TimeInputType.h
index 84529f5d0ae5d8eb4f1dff01785231555a6e731e..508bb3b12ffb72435d7db91a0db40c9ac0c214f7 100644
--- a/Source/core/html/forms/TimeInputType.h
+++ b/Source/core/html/forms/TimeInputType.h
@@ -37,9 +37,9 @@
namespace blink {
#if ENABLE(INPUT_MULTIPLE_FIELDS_UI)
-typedef BaseMultipleFieldsDateAndTimeInputType BaseTimeInputType;
+using BaseTimeInputType = BaseMultipleFieldsDateAndTimeInputType;
#else
-typedef BaseChooserOnlyDateAndTimeInputType BaseTimeInputType;
+using BaseTimeInputType = BaseChooserOnlyDateAndTimeInputType;
#endif
class TimeInputType final : public BaseTimeInputType {
@@ -48,20 +48,20 @@ public:
private:
TimeInputType(HTMLInputElement&);
- virtual void countUsage() override;
- virtual const AtomicString& formControlType() const override;
- virtual Decimal defaultValueForStepUp() const override;
- virtual StepRange createStepRange(AnyStepHandling) const override;
- virtual bool parseToDateComponentsInternal(const String&, DateComponents*) const override;
- virtual bool setMillisecondToDateComponents(double, DateComponents*) const override;
- virtual void warnIfValueIsInvalid(const String&) const override;
+ void countUsage() override;
+ const AtomicString& formControlType() const override;
+ Decimal defaultValueForStepUp() const override;
+ StepRange createStepRange(AnyStepHandling) const override;
+ bool parseToDateComponentsInternal(const String&, DateComponents*) const override;
+ bool setMillisecondToDateComponents(double, DateComponents*) const override;
+ void warnIfValueIsInvalid(const String&) const override;
#if ENABLE(INPUT_MULTIPLE_FIELDS_UI)
- virtual String localizeValue(const String&) const override;
+ String localizeValue(const String&) const override;
// BaseMultipleFieldsDateAndTimeInputType functions
- virtual String formatDateTimeFieldsState(const DateTimeFieldsState&) const override;
- virtual void setupLayoutParameters(DateTimeEditElement::LayoutParameters&, const DateComponents&) const override;
- virtual bool isValidFormat(bool hasYear, bool hasMonth, bool hasWeek, bool hasDay, bool hasAMPM, bool hasHour, bool hasMinute, bool hasSecond) const override;
+ String formatDateTimeFieldsState(const DateTimeFieldsState&) const override;
+ void setupLayoutParameters(DateTimeEditElement::LayoutParameters&, const DateComponents&) const override;
+ bool isValidFormat(bool hasYear, bool hasMonth, bool hasWeek, bool hasDay, bool hasAMPM, bool hasHour, bool hasMinute, bool hasSecond) const override;
#endif
};
« no previous file with comments | « Source/core/html/forms/TextInputType.h ('k') | Source/core/html/forms/TypeAhead.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698