| 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));
|
| }
|
|
|