| 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 b37b8d78eb0ccf31692631e8587ccb4965040740..7b9dcccc3921ced551871506c108def492927dc4 100644
|
| --- a/third_party/WebKit/Source/core/dom/custom/CustomElement.h
|
| +++ b/third_party/WebKit/Source/core/dom/custom/CustomElement.h
|
| @@ -6,6 +6,7 @@
|
| #define CustomElement_h
|
|
|
| #include "core/CoreExport.h"
|
| +#include "core/dom/Document.h"
|
| #include "wtf/Allocator.h"
|
| #include "wtf/text/AtomicString.h"
|
|
|
| @@ -23,8 +24,8 @@ public:
|
| static bool shouldCreateCustomElement(Document&, const AtomicString& localName);
|
| static bool shouldCreateCustomElement(Document&, const QualifiedName&);
|
|
|
| - static HTMLElement* createCustomElement(Document&, const AtomicString& localName);
|
| - static HTMLElement* createCustomElement(Document&, const QualifiedName&);
|
| + static HTMLElement* createCustomElement(Document&, const AtomicString& localName, CreateElementFlags);
|
| + static HTMLElement* createCustomElement(Document&, const QualifiedName&, CreateElementFlags);
|
| };
|
|
|
| } // namespace blink
|
|
|