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

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

Issue 132103002: Update HTML forms classes to use OVERRIDE / FINAL when needed (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 11 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
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 26 matching lines...) Expand all
37 namespace WebCore { 37 namespace WebCore {
38 38
39 class PickerIndicatorElement; 39 class PickerIndicatorElement;
40 40
41 #if ENABLE(INPUT_MULTIPLE_FIELDS_UI) 41 #if ENABLE(INPUT_MULTIPLE_FIELDS_UI)
42 typedef BaseMultipleFieldsDateAndTimeInputType BaseDateInputType; 42 typedef BaseMultipleFieldsDateAndTimeInputType BaseDateInputType;
43 #else 43 #else
44 typedef BaseChooserOnlyDateAndTimeInputType BaseDateInputType; 44 typedef BaseChooserOnlyDateAndTimeInputType BaseDateInputType;
45 #endif 45 #endif
46 46
47 class DateInputType : public BaseDateInputType { 47 class DateInputType FINAL : public BaseDateInputType {
48 public: 48 public:
49 static PassRefPtr<InputType> create(HTMLInputElement&); 49 static PassRefPtr<InputType> create(HTMLInputElement&);
50 50
51 private: 51 private:
52 DateInputType(HTMLInputElement&); 52 DateInputType(HTMLInputElement&);
53 virtual void countUsage() OVERRIDE; 53 virtual void countUsage() OVERRIDE;
54 virtual const AtomicString& formControlType() const OVERRIDE; 54 virtual const AtomicString& formControlType() const OVERRIDE;
55 virtual StepRange createStepRange(AnyStepHandling) const OVERRIDE; 55 virtual StepRange createStepRange(AnyStepHandling) const OVERRIDE;
56 virtual bool parseToDateComponentsInternal(const String&, DateComponents*) c onst OVERRIDE; 56 virtual bool parseToDateComponentsInternal(const String&, DateComponents*) c onst OVERRIDE;
57 virtual bool setMillisecondToDateComponents(double, DateComponents*) const O VERRIDE; 57 virtual bool setMillisecondToDateComponents(double, DateComponents*) const O VERRIDE;
58 virtual bool isDateField() const OVERRIDE; 58 virtual bool isDateField() const OVERRIDE;
59 59
60 #if ENABLE(INPUT_MULTIPLE_FIELDS_UI) 60 #if ENABLE(INPUT_MULTIPLE_FIELDS_UI)
61 // BaseMultipleFieldsDateAndTimeInputType functions 61 // BaseMultipleFieldsDateAndTimeInputType functions
62 virtual String formatDateTimeFieldsState(const DateTimeFieldsState&) const O VERRIDE; 62 virtual String formatDateTimeFieldsState(const DateTimeFieldsState&) const O VERRIDE;
63 virtual void setupLayoutParameters(DateTimeEditElement::LayoutParameters&, c onst DateComponents&) const OVERRIDE; 63 virtual void setupLayoutParameters(DateTimeEditElement::LayoutParameters&, c onst DateComponents&) const OVERRIDE;
64 virtual bool isValidFormat(bool hasYear, bool hasMonth, bool hasWeek, bool h asDay, bool hasAMPM, bool hasHour, bool hasMinute, bool hasSecond) const; 64 virtual bool isValidFormat(bool hasYear, bool hasMonth, bool hasWeek, bool h asDay, bool hasAMPM, bool hasHour, bool hasMinute, bool hasSecond) const OVERRID E;
65 #endif 65 #endif
66 }; 66 };
67 67
68 } // namespace WebCore 68 } // namespace WebCore
69 69
70 #endif // DateInputType_h 70 #endif // DateInputType_h
OLDNEW
« no previous file with comments | « Source/core/html/forms/ColorInputType.h ('k') | Source/core/html/forms/DateTimeLocalInputType.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698