Index: Source/core/dom/Element.h |
diff --git a/Source/core/dom/Element.h b/Source/core/dom/Element.h |
index cbe72fb13a2721269852b8791f9a8a74084c241e..9450eaec737089b53e66569a692912d03acd98fd 100644 |
--- a/Source/core/dom/Element.h |
+++ b/Source/core/dom/Element.h |
@@ -500,6 +500,8 @@ public: |
virtual void trace(Visitor*) OVERRIDE; |
+ virtual v8::Handle<v8::Object> wrap(v8::Handle<v8::Object> creationContext, v8::Isolate*) OVERRIDE; |
+ |
protected: |
Element(const QualifiedName& tagName, Document*, ConstructionType); |
@@ -643,6 +645,8 @@ private: |
bool isJavaScriptURLAttribute(const Attribute&) const; |
+ v8::Handle<v8::Object> wrapCustomElement(v8::Handle<v8::Object> creationContext, v8::Isolate*); |
+ |
RefPtrWillBeMember<ElementData> m_elementData; |
}; |