| 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 1d1dcae44f1b984ed57ea6990047b2092742777f..b2331060b506da47050ba349b5dd9e0556a2db4a 100644
|
| --- a/third_party/WebKit/Source/core/html/HTMLScriptElement.h
|
| +++ b/third_party/WebKit/Source/core/html/HTMLScriptElement.h
|
| @@ -28,13 +28,14 @@
|
| #include "core/dom/ScriptLoader.h"
|
| #include "core/dom/ScriptLoaderClient.h"
|
| #include "core/html/HTMLElement.h"
|
| +#include "core/html/parser/HTMLConstructionSite.h"
|
|
|
| namespace blink {
|
|
|
| class CORE_EXPORT HTMLScriptElement final : public HTMLElement, public ScriptLoaderClient {
|
| DEFINE_WRAPPERTYPEINFO();
|
| public:
|
| - static RawPtr<HTMLScriptElement> create(Document&, bool wasInsertedByParser, bool alreadyStarted = false);
|
| + static RawPtr<HTMLScriptElement> create(Document&, int constructionContextFlags);
|
|
|
| String text() { return textFromChildren(); }
|
| void setText(const String&);
|
| @@ -49,7 +50,7 @@ public:
|
| DECLARE_VIRTUAL_TRACE();
|
|
|
| private:
|
| - HTMLScriptElement(Document&, bool wasInsertedByParser, bool alreadyStarted);
|
| + HTMLScriptElement(Document&, int constructionContextFlags);
|
|
|
| void parseAttribute(const QualifiedName&, const AtomicString&, const AtomicString&) override;
|
| InsertionNotificationRequest insertedInto(ContainerNode*) override;
|
|
|