| Index: third_party/WebKit/Source/core/html/RelList.h
|
| diff --git a/third_party/WebKit/Source/core/html/RelList.h b/third_party/WebKit/Source/core/html/RelList.h
|
| index 2d0416fe4ccf426e9ce98fec8627237faf0f4c5e..4fd219248efb293f5d219994bc301d051a683185 100644
|
| --- a/third_party/WebKit/Source/core/html/RelList.h
|
| +++ b/third_party/WebKit/Source/core/html/RelList.h
|
| @@ -15,9 +15,9 @@ namespace blink {
|
|
|
| class RelList final : public DOMTokenList {
|
| public:
|
| - static PassOwnPtrWillBeRawPtr<RelList> create(Element* element)
|
| + static RawPtr<RelList> create(Element* element)
|
| {
|
| - return adoptPtrWillBeNoop(new RelList(element));
|
| + return (new RelList(element));
|
| }
|
|
|
| #if !ENABLE(OILPAN)
|
| @@ -45,7 +45,7 @@ private:
|
|
|
| bool validateTokenValue(const AtomicString&, ExceptionState&) const override;
|
|
|
| - RawPtrWillBeMember<Element> m_element;
|
| + Member<Element> m_element;
|
| SpaceSplitString m_relValues;
|
| };
|
|
|
|
|