| Index: Source/core/html/RadioNodeList.h
|
| diff --git a/Source/core/html/RadioNodeList.h b/Source/core/html/RadioNodeList.h
|
| index a0ae1b3ca5d908b0cb3510185d6d693a34e1bb76..09eb8d06d47c3cab4150b4d72d2309bcb474ff6f 100644
|
| --- a/Source/core/html/RadioNodeList.h
|
| +++ b/Source/core/html/RadioNodeList.h
|
| @@ -34,10 +34,10 @@ namespace WebCore {
|
|
|
| class RadioNodeList FINAL : public LiveNodeList {
|
| public:
|
| - static PassRefPtr<RadioNodeList> create(ContainerNode& ownerNode, CollectionType type, const AtomicString& name)
|
| + static PassRefPtrWillBeRawPtr<RadioNodeList> create(ContainerNode& ownerNode, CollectionType type, const AtomicString& name)
|
| {
|
| ASSERT_UNUSED(type, type == RadioNodeListType || type == RadioImgNodeListType);
|
| - return adoptRef(new RadioNodeList(ownerNode, name, type));
|
| + return adoptRefWillBeNoop(new RadioNodeList(ownerNode, name, type));
|
| }
|
|
|
| virtual ~RadioNodeList();
|
|
|