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

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

Issue 563703002: Oilpan: Enable oilpan for callback classes (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 3 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/frame/LocalDOMWindow.cpp ('k') | Source/core/html/VoidCallback.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/html/HTMLSelectElement.cpp
diff --git a/Source/core/html/HTMLSelectElement.cpp b/Source/core/html/HTMLSelectElement.cpp
index 015a8812751d7e2facc25299a71bb46df48a788d..391b810f8e0f875e3c3698e4cd33bcf4d6855311 100644
--- a/Source/core/html/HTMLSelectElement.cpp
+++ b/Source/core/html/HTMLSelectElement.cpp
@@ -377,11 +377,12 @@ bool HTMLSelectElement::canSelectAll() const
return !usesMenuList();
}
-RenderObject* HTMLSelectElement::createRenderer(RenderStyle*)
+RenderObject* HTMLSelectElement::createRenderer(RenderStyle* style)
{
if (usesMenuList())
return new RenderMenuList(this);
- return new RenderListBox(this);
+ return HTMLFormControlElementWithState::createRenderer(style);
tkent 2014/09/25 06:49:51 Looks an accidental change.
keishi 2014/09/25 07:02:55 Sorry, thanks.
+// return new RenderListBox(this);
}
PassRefPtrWillBeRawPtr<HTMLCollection> HTMLSelectElement::selectedOptions()
« no previous file with comments | « Source/core/frame/LocalDOMWindow.cpp ('k') | Source/core/html/VoidCallback.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698