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

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

Issue 19509003: [oilpan] Completely move HTMLFormControlElement's hierarchy to the managed heap (Closed) 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
Index: Source/core/html/DateTimeLocalInputType.cpp
diff --git a/Source/core/html/DateTimeLocalInputType.cpp b/Source/core/html/DateTimeLocalInputType.cpp
index 7fb9e6691f590c83dde646ed0b84125e6ea8e814..f7dbd25ea5c106bdd6c3438c9b77bfbd0fe6bc52 100644
--- a/Source/core/html/DateTimeLocalInputType.cpp
+++ b/Source/core/html/DateTimeLocalInputType.cpp
@@ -53,7 +53,7 @@ static const int dateTimeLocalDefaultStep = 60;
static const int dateTimeLocalDefaultStepBase = 0;
static const int dateTimeLocalStepScaleFactor = 1000;
-PassOwnPtr<InputType> DateTimeLocalInputType::create(HTMLInputElement* element)
+PassOwnPtr<InputType> DateTimeLocalInputType::create(Handle<HTMLInputElement> element)
{
return adoptPtr(new DateTimeLocalInputType(element));
}

Powered by Google App Engine
This is Rietveld 408576698