Index: third_party/WebKit/Source/core/dom/custom/CustomElement.h |
diff --git a/third_party/WebKit/Source/core/dom/custom/CustomElement.h b/third_party/WebKit/Source/core/dom/custom/CustomElement.h |
index b4637109016095e548aa896aefdf71e9aaad1d7d..3c2dcaf0dc10e7e143cc719d65e81d841a85afea 100644 |
--- a/third_party/WebKit/Source/core/dom/custom/CustomElement.h |
+++ b/third_party/WebKit/Source/core/dom/custom/CustomElement.h |
@@ -55,11 +55,14 @@ public: |
static bool shouldCreateCustomElement(Document&, const QualifiedName&); |
static HTMLElement* createCustomElement(Document&, const AtomicString& localName, CreateElementFlags); |
+ static HTMLElement* createCustomElement(Document&, const AtomicString& localName, CreateElementFlags, ExceptionState&); |
static HTMLElement* createCustomElement(Document&, const QualifiedName&, CreateElementFlags); |
+ static HTMLElement* createCustomElement(Document&, const QualifiedName&, CreateElementFlags, ExceptionState&); |
static void enqueueUpgradeReaction(Element*, CustomElementDefinition*); |
private: |
+ static HTMLElement* createCustomElement(Document&, const QualifiedName&, CreateElementFlags, ExceptionState*); |
dominicc (has gone to gerrit)
2016/06/10 06:13:28
I don't like how things have ended up here. You ha
kojii
2016/06/10 19:01:45
Done. It used to use CreatedByParser too, but that
|
static HTMLElement* createCustomElementAsync(Document&, CustomElementDefinition&, const QualifiedName&); |
}; |