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

Unified Diff: Source/core/html/ColorInputType.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/ColorInputType.cpp
diff --git a/Source/core/html/ColorInputType.cpp b/Source/core/html/ColorInputType.cpp
index bffe7782b97bd87e7e924c762ca3c09fc1cd8797..e2f490d35ec83783f31050700e01516a2fa7940f 100644
--- a/Source/core/html/ColorInputType.cpp
+++ b/Source/core/html/ColorInputType.cpp
@@ -67,7 +67,7 @@ static bool isValidColorString(const String& value)
return color.isValid() && !color.hasAlpha();
}
-PassOwnPtr<InputType> ColorInputType::create(HTMLInputElement* element)
+PassOwnPtr<InputType> ColorInputType::create(Handle<HTMLInputElement> element)
{
return adoptPtr(new ColorInputType(element));
}

Powered by Google App Engine
This is Rietveld 408576698