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

Side by Side Diff: Source/core/html/forms/TimeInputType.h

Issue 635793002: Replace FINAL and OVERRIDE with their C++11 counterparts in Source/core/html (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 2 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 unified diff | Download patch
« no previous file with comments | « Source/core/html/forms/TextInputType.h ('k') | Source/core/html/forms/URLInputType.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2010 Google Inc. All rights reserved. 2 * Copyright (C) 2010 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 24 matching lines...) Expand all
35 #include "core/html/forms/BaseMultipleFieldsDateAndTimeInputType.h" 35 #include "core/html/forms/BaseMultipleFieldsDateAndTimeInputType.h"
36 36
37 namespace blink { 37 namespace blink {
38 38
39 #if ENABLE(INPUT_MULTIPLE_FIELDS_UI) 39 #if ENABLE(INPUT_MULTIPLE_FIELDS_UI)
40 typedef BaseMultipleFieldsDateAndTimeInputType BaseTimeInputType; 40 typedef BaseMultipleFieldsDateAndTimeInputType BaseTimeInputType;
41 #else 41 #else
42 typedef BaseChooserOnlyDateAndTimeInputType BaseTimeInputType; 42 typedef BaseChooserOnlyDateAndTimeInputType BaseTimeInputType;
43 #endif 43 #endif
44 44
45 class TimeInputType FINAL : public BaseTimeInputType { 45 class TimeInputType final : public BaseTimeInputType {
46 public: 46 public:
47 static PassRefPtrWillBeRawPtr<InputType> create(HTMLInputElement&); 47 static PassRefPtrWillBeRawPtr<InputType> create(HTMLInputElement&);
48 48
49 private: 49 private:
50 TimeInputType(HTMLInputElement&); 50 TimeInputType(HTMLInputElement&);
51 virtual void countUsage() OVERRIDE; 51 virtual void countUsage() override;
52 virtual const AtomicString& formControlType() const OVERRIDE; 52 virtual const AtomicString& formControlType() const override;
53 virtual Decimal defaultValueForStepUp() const OVERRIDE; 53 virtual Decimal defaultValueForStepUp() const override;
54 virtual StepRange createStepRange(AnyStepHandling) const OVERRIDE; 54 virtual StepRange createStepRange(AnyStepHandling) const override;
55 virtual bool parseToDateComponentsInternal(const String&, DateComponents*) c onst OVERRIDE; 55 virtual bool parseToDateComponentsInternal(const String&, DateComponents*) c onst override;
56 virtual bool setMillisecondToDateComponents(double, DateComponents*) const O VERRIDE; 56 virtual bool setMillisecondToDateComponents(double, DateComponents*) const o verride;
57 #if ENABLE(INPUT_MULTIPLE_FIELDS_UI) 57 #if ENABLE(INPUT_MULTIPLE_FIELDS_UI)
58 virtual String localizeValue(const String&) const OVERRIDE; 58 virtual String localizeValue(const String&) const override;
59 59
60 // BaseMultipleFieldsDateAndTimeInputType functions 60 // BaseMultipleFieldsDateAndTimeInputType functions
61 virtual String formatDateTimeFieldsState(const DateTimeFieldsState&) const O VERRIDE; 61 virtual String formatDateTimeFieldsState(const DateTimeFieldsState&) const o verride;
62 virtual void setupLayoutParameters(DateTimeEditElement::LayoutParameters&, c onst DateComponents&) const OVERRIDE; 62 virtual void setupLayoutParameters(DateTimeEditElement::LayoutParameters&, c onst DateComponents&) const override;
63 virtual bool isValidFormat(bool hasYear, bool hasMonth, bool hasWeek, bool h asDay, bool hasAMPM, bool hasHour, bool hasMinute, bool hasSecond) const OVERRID E; 63 virtual bool isValidFormat(bool hasYear, bool hasMonth, bool hasWeek, bool h asDay, bool hasAMPM, bool hasHour, bool hasMinute, bool hasSecond) const overrid e;
64 #endif 64 #endif
65 }; 65 };
66 66
67 } // namespace blink 67 } // namespace blink
68 68
69 #endif // TimeInputType_h 69 #endif // TimeInputType_h
OLDNEW
« no previous file with comments | « Source/core/html/forms/TextInputType.h ('k') | Source/core/html/forms/URLInputType.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698