| Index: Source/core/html/HTMLSelectElement.cpp
|
| diff --git a/Source/core/html/HTMLSelectElement.cpp b/Source/core/html/HTMLSelectElement.cpp
|
| index 23df8a90cf256394b6a116628abd287d536a84a4..89a0ddff25b6fa03d37aa25dd0b6fe27f7d38bfa 100644
|
| --- a/Source/core/html/HTMLSelectElement.cpp
|
| +++ b/Source/core/html/HTMLSelectElement.cpp
|
| @@ -81,12 +81,12 @@ HTMLSelectElement::HTMLSelectElement(Document& document, HTMLFormElement* form)
|
|
|
| PassRefPtrWillBeRawPtr<HTMLSelectElement> HTMLSelectElement::create(Document& document)
|
| {
|
| - return adoptRefWillBeRefCountedGarbageCollected(new HTMLSelectElement(document, 0));
|
| + return adoptRefWillBeNoop(new HTMLSelectElement(document, 0));
|
| }
|
|
|
| PassRefPtrWillBeRawPtr<HTMLSelectElement> HTMLSelectElement::create(Document& document, HTMLFormElement* form)
|
| {
|
| - return adoptRefWillBeRefCountedGarbageCollected(new HTMLSelectElement(document, form));
|
| + return adoptRefWillBeNoop(new HTMLSelectElement(document, form));
|
| }
|
|
|
| const AtomicString& HTMLSelectElement::formControlType() const
|
|
|