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

Unified 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/core/html/forms/DateInputType.h
diff --git a/third_party/WebKit/Source/core/html/forms/DateInputType.h b/third_party/WebKit/Source/core/html/forms/DateInputType.h
index 38002ce531509436d7675bec9462eda2f673991d..473649336a2e8e41a28babfffd6f0fb0540b6c73 100644
--- a/third_party/WebKit/Source/core/html/forms/DateInputType.h
+++ b/third_party/WebKit/Source/core/html/forms/DateInputType.h
@@ -43,11 +43,14 @@ using BaseDateInputType = BaseChooserOnlyDateAndTimeInputType;
#endif
class DateInputType final : public BaseDateInputType {
+ 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
public:
static PassRefPtrWillBeRawPtr<InputType> create(HTMLInputElement&);
+ DEFINE_BASEDATEANDTIMEINPUTTYPE_VIRTUAL_TRACE(BaseDateInputType);
private:
- DateInputType(HTMLInputElement&);
+ explicit DateInputType(HTMLInputElement&);
+
void countUsage() override;
const AtomicString& formControlType() const override;
StepRange createStepRange(AnyStepHandling) const override;

Powered by Google App Engine
This is Rietveld 408576698