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

Unified Diff: Source/core/html/DateInputType.cpp

Issue 19510005: [oilpan] Completely move HTMLFormControlElement's hierarchy to the managed heap Base URL: svn://svn.chromium.org/blink/branches/oilpan
Patch Set: Created 7 years, 5 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/core/html/DateInputType.h ('k') | Source/core/html/DateTimeInputType.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/html/DateInputType.cpp
diff --git a/Source/core/html/DateInputType.cpp b/Source/core/html/DateInputType.cpp
index 2fa4b01a8762e449d8690bd5ae52984221e56a3b..006b69d7285cac935aa05a5eb61abf80eeff95e0 100644
--- a/Source/core/html/DateInputType.cpp
+++ b/Source/core/html/DateInputType.cpp
@@ -50,12 +50,12 @@ static const int dateDefaultStep = 1;
static const int dateDefaultStepBase = 0;
static const int dateStepScaleFactor = 86400000;
-inline DateInputType::DateInputType(HTMLInputElement* element)
+inline DateInputType::DateInputType(Handle<HTMLInputElement> element)
: BaseDateInputType(element)
{
}
-PassOwnPtr<InputType> DateInputType::create(HTMLInputElement* element)
+PassOwnPtr<InputType> DateInputType::create(Handle<HTMLInputElement> element)
{
return adoptPtr(new DateInputType(element));
}
« no previous file with comments | « Source/core/html/DateInputType.h ('k') | Source/core/html/DateTimeInputType.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698