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

Unified Diff: Source/core/html/TimeInputType.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/TimeInputType.h ('k') | Source/core/html/URLInputType.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/html/TimeInputType.cpp
diff --git a/Source/core/html/TimeInputType.cpp b/Source/core/html/TimeInputType.cpp
index bc0d6ea54316abc933ab5cd4cc6423883efc5261..5472aac3ffbf2f450b2ccc7c8bc96276faffe71e 100644
--- a/Source/core/html/TimeInputType.cpp
+++ b/Source/core/html/TimeInputType.cpp
@@ -54,12 +54,12 @@ static const int timeDefaultStep = 60;
static const int timeDefaultStepBase = 0;
static const int timeStepScaleFactor = 1000;
-TimeInputType::TimeInputType(HTMLInputElement* element)
+TimeInputType::TimeInputType(Handle<HTMLInputElement> element)
: BaseTimeInputType(element)
{
}
-PassOwnPtr<InputType> TimeInputType::create(HTMLInputElement* element)
+PassOwnPtr<InputType> TimeInputType::create(Handle<HTMLInputElement> element)
{
return adoptPtr(new TimeInputType(element));
}
« no previous file with comments | « Source/core/html/TimeInputType.h ('k') | Source/core/html/URLInputType.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698