| Index: third_party/WebKit/Source/core/html/HTMLScriptElement.h
|
| diff --git a/third_party/WebKit/Source/core/html/HTMLScriptElement.h b/third_party/WebKit/Source/core/html/HTMLScriptElement.h
|
| index 75d1177bb566c37cee95697182ad2b2292bfdeda..1d1dcae44f1b984ed57ea6990047b2092742777f 100644
|
| --- a/third_party/WebKit/Source/core/html/HTMLScriptElement.h
|
| +++ b/third_party/WebKit/Source/core/html/HTMLScriptElement.h
|
| @@ -34,7 +34,7 @@ namespace blink {
|
| class CORE_EXPORT HTMLScriptElement final : public HTMLElement, public ScriptLoaderClient {
|
| DEFINE_WRAPPERTYPEINFO();
|
| public:
|
| - static PassRefPtrWillBeRawPtr<HTMLScriptElement> create(Document&, bool wasInsertedByParser, bool alreadyStarted = false);
|
| + static RawPtr<HTMLScriptElement> create(Document&, bool wasInsertedByParser, bool alreadyStarted = false);
|
|
|
| String text() { return textFromChildren(); }
|
| void setText(const String&);
|
| @@ -73,9 +73,9 @@ private:
|
|
|
| void dispatchLoadEvent() override;
|
|
|
| - PassRefPtrWillBeRawPtr<Element> cloneElementWithoutAttributesAndChildren() override;
|
| + RawPtr<Element> cloneElementWithoutAttributesAndChildren() override;
|
|
|
| - OwnPtrWillBeMember<ScriptLoader> m_loader;
|
| + Member<ScriptLoader> m_loader;
|
| };
|
|
|
| } // namespace blink
|
|
|