| Index: third_party/WebKit/Source/core/html/HTMLUnknownElement.h
|
| diff --git a/third_party/WebKit/Source/core/html/HTMLUnknownElement.h b/third_party/WebKit/Source/core/html/HTMLUnknownElement.h
|
| index c9c1523c106b7c4827fd4dc20d248bed17252500..f181bbe41c09c1c9597df02948a3267a091b75f4 100644
|
| --- a/third_party/WebKit/Source/core/html/HTMLUnknownElement.h
|
| +++ b/third_party/WebKit/Source/core/html/HTMLUnknownElement.h
|
| @@ -37,9 +37,9 @@ namespace blink {
|
| class HTMLUnknownElement final : public HTMLElement {
|
| DEFINE_WRAPPERTYPEINFO();
|
| public:
|
| - static PassRefPtrWillBeRawPtr<HTMLUnknownElement> create(const QualifiedName& tagName, Document& document)
|
| + static RawPtr<HTMLUnknownElement> create(const QualifiedName& tagName, Document& document)
|
| {
|
| - return adoptRefWillBeNoop(new HTMLUnknownElement(tagName, document));
|
| + return new HTMLUnknownElement(tagName, document);
|
| }
|
|
|
| private:
|
|
|