| Index: third_party/WebKit/Source/core/html/LabelsNodeList.h
|
| diff --git a/third_party/WebKit/Source/core/html/LabelsNodeList.h b/third_party/WebKit/Source/core/html/LabelsNodeList.h
|
| index 1999159228bdd0099f267e750a4de9877d97a0ff..630f65cb7e6d6beb8d7f04a67ffd298cc69c907c 100644
|
| --- a/third_party/WebKit/Source/core/html/LabelsNodeList.h
|
| +++ b/third_party/WebKit/Source/core/html/LabelsNodeList.h
|
| @@ -32,10 +32,10 @@ namespace blink {
|
|
|
| class LabelsNodeList final : public LiveNodeList {
|
| public:
|
| - static PassRefPtrWillBeRawPtr<LabelsNodeList> create(ContainerNode& ownerNode, CollectionType type)
|
| + static RawPtr<LabelsNodeList> create(ContainerNode& ownerNode, CollectionType type)
|
| {
|
| ASSERT_UNUSED(type, type == LabelsNodeListType);
|
| - return adoptRefWillBeNoop(new LabelsNodeList(ownerNode));
|
| + return new LabelsNodeList(ownerNode);
|
| }
|
|
|
| virtual ~LabelsNodeList();
|
|
|