| Index: Source/core/html/HTMLSelectElement.cpp
|
| diff --git a/Source/core/html/HTMLSelectElement.cpp b/Source/core/html/HTMLSelectElement.cpp
|
| index 353990537101ec6587b0080e6ce939a0c19e04ee..97f536000d50ac6507b3ed307670cdb7f8b7c71c 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
|
|
|