Index: third_party/WebKit/Source/core/dom/Document.h |
diff --git a/third_party/WebKit/Source/core/dom/Document.h b/third_party/WebKit/Source/core/dom/Document.h |
index b16dc305dc3c74c5f30120d9bc928278b0495b12..755c76072299d81632cdb695be668f888582b3e4 100644 |
--- a/third_party/WebKit/Source/core/dom/Document.h |
+++ b/third_party/WebKit/Source/core/dom/Document.h |
@@ -90,6 +90,7 @@ class DocumentState; |
class DocumentType; |
class Element; |
class ElementDataCache; |
+class ElementCreationOptionsOrString; |
class ElementRegistrationOptions; |
class Event; |
class EventFactoryBase; |
@@ -977,8 +978,8 @@ public: |
TextAutosizer* textAutosizer(); |
- Element* createElement(const AtomicString& localName, const AtomicString& typeExtension, ExceptionState&); |
- Element* createElementNS(const AtomicString& namespaceURI, const AtomicString& qualifiedName, const AtomicString& typeExtension, ExceptionState&); |
+ Element* createElement(const AtomicString& localName, const ElementCreationOptionsOrString&, ExceptionState&); |
+ Element* createElementNS(const AtomicString& namespaceURI, const AtomicString& qualifiedName, const ElementCreationOptionsOrString&, ExceptionState&); |
ScriptValue registerElement(ScriptState*, const AtomicString& name, const ElementRegistrationOptions&, ExceptionState&, V0CustomElement::NameSet validNames = V0CustomElement::StandardNames); |
V0CustomElementRegistrationContext* registrationContext() { return m_registrationContext.get(); } |
V0CustomElementMicrotaskRunQueue* customElementMicrotaskRunQueue(); |