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

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

Issue 1466113002: Oilpan: move BaseChooserOnlyDateAndTimeInputType to the heap. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: conditionally define GC mixin leftmost bases Created 5 years, 1 month 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 25 matching lines...) Expand all
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 using BaseDateInputType = BaseMultipleFieldsDateAndTimeInputType; 40 using BaseDateInputType = BaseMultipleFieldsDateAndTimeInputType;
41 #else 41 #else
42 using BaseDateInputType = BaseChooserOnlyDateAndTimeInputType; 42 using BaseDateInputType = BaseChooserOnlyDateAndTimeInputType;
43 #endif 43 #endif
44 44
45 class DateInputType final : public BaseDateInputType { 45 class DateInputType final : public BaseDateInputType {
46 WILL_BE_USING_DATETIMERCHOOSERCLIENT_GC_MIXIN(DateInputType);
haraken 2015/11/22 01:01:39 Help me understand: Why can't we make BaseChooserO
sof 2015/11/22 07:48:55 Isn't it the rule that the leftmost base should de
haraken 2015/11/22 14:27:09 I think the rule is as follows. class A : publi
46 public: 47 public:
47 static PassRefPtrWillBeRawPtr<InputType> create(HTMLInputElement&); 48 static PassRefPtrWillBeRawPtr<InputType> create(HTMLInputElement&);
49 DEFINE_BASEDATEANDTIMEINPUTTYPE_VIRTUAL_TRACE(BaseDateInputType);
48 50
49 private: 51 private:
50 DateInputType(HTMLInputElement&); 52 explicit DateInputType(HTMLInputElement&);
53
51 void countUsage() override; 54 void countUsage() override;
52 const AtomicString& formControlType() const override; 55 const AtomicString& formControlType() const override;
53 StepRange createStepRange(AnyStepHandling) const override; 56 StepRange createStepRange(AnyStepHandling) const override;
54 bool parseToDateComponentsInternal(const String&, DateComponents*) const ove rride; 57 bool parseToDateComponentsInternal(const String&, DateComponents*) const ove rride;
55 bool setMillisecondToDateComponents(double, DateComponents*) const override; 58 bool setMillisecondToDateComponents(double, DateComponents*) const override;
56 void warnIfValueIsInvalid(const String&) const override; 59 void warnIfValueIsInvalid(const String&) const override;
57 60
58 #if ENABLE(INPUT_MULTIPLE_FIELDS_UI) 61 #if ENABLE(INPUT_MULTIPLE_FIELDS_UI)
59 // BaseMultipleFieldsDateAndTimeInputType functions 62 // BaseMultipleFieldsDateAndTimeInputType functions
60 String formatDateTimeFieldsState(const DateTimeFieldsState&) const override; 63 String formatDateTimeFieldsState(const DateTimeFieldsState&) const override;
61 void setupLayoutParameters(DateTimeEditElement::LayoutParameters&, const Dat eComponents&) const override; 64 void setupLayoutParameters(DateTimeEditElement::LayoutParameters&, const Dat eComponents&) const override;
62 bool isValidFormat(bool hasYear, bool hasMonth, bool hasWeek, bool hasDay, b ool hasAMPM, bool hasHour, bool hasMinute, bool hasSecond) const override; 65 bool isValidFormat(bool hasYear, bool hasMonth, bool hasWeek, bool hasDay, b ool hasAMPM, bool hasHour, bool hasMinute, bool hasSecond) const override;
63 #endif 66 #endif
64 }; 67 };
65 68
66 } // namespace blink 69 } // namespace blink
67 70
68 #endif // DateInputType_h 71 #endif // DateInputType_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698