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

Unified Diff: Source/core/html/MonthInputType.h

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/MonthInputType.h
diff --git a/Source/core/html/MonthInputType.h b/Source/core/html/MonthInputType.h
index 2e11cd4af7a31ca07f7774ef767c79b68fac20cf..7db3386a7d2cbde5429d9e954bc3a87032297254 100644
--- a/Source/core/html/MonthInputType.h
+++ b/Source/core/html/MonthInputType.h
@@ -44,10 +44,10 @@ typedef BaseChooserOnlyDateAndTimeInputType BaseMonthInputType;
class MonthInputType : public BaseMonthInputType {
public:
- static PassOwnPtr<InputType> create(HTMLInputElement*);
+ static PassOwnPtr<InputType> create(Handle<HTMLInputElement>);
private:
- MonthInputType(HTMLInputElement* element) : BaseMonthInputType(element) { }
+ MonthInputType(Handle<HTMLInputElement> element) : BaseMonthInputType(element) { }
virtual void attach() OVERRIDE;
virtual const AtomicString& formControlType() const OVERRIDE;
virtual DateComponents::Type dateType() const OVERRIDE;

Powered by Google App Engine
This is Rietveld 408576698