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

Unified Diff: third_party/WebKit/Source/core/html/forms/WeekInputType.h

Issue 1466113002: Oilpan: move BaseChooserOnlyDateAndTimeInputType to the heap. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: add a prefinalizer 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/WeekInputType.h
diff --git a/third_party/WebKit/Source/core/html/forms/WeekInputType.h b/third_party/WebKit/Source/core/html/forms/WeekInputType.h
index 32511ac1e8e065e285f08a748b9558cbc9ffe829..53306b2bb2aeb919006102d00a1ab0b8cffc019c 100644
--- a/third_party/WebKit/Source/core/html/forms/WeekInputType.h
+++ b/third_party/WebKit/Source/core/html/forms/WeekInputType.h
@@ -43,11 +43,14 @@ using BaseWeekInputType = BaseChooserOnlyDateAndTimeInputType;
#endif
class WeekInputType final : public BaseWeekInputType {
+ WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(WeekInputType);
public:
static PassRefPtrWillBeRawPtr<InputType> create(HTMLInputElement&);
+ DEFINE_INLINE_VIRTUAL_TRACE() { BaseWeekInputType::trace(visitor); }
private:
- WeekInputType(HTMLInputElement& element) : BaseWeekInputType(element) { }
+ explicit WeekInputType(HTMLInputElement& element) : BaseWeekInputType(element) { }
+
void countUsage() override;
const AtomicString& formControlType() const override;
StepRange createStepRange(AnyStepHandling) const override;

Powered by Google App Engine
This is Rietveld 408576698