Index: Source/bindings/core/v8/CustomElementWrapper.h |
diff --git a/Source/bindings/core/v8/CustomElementWrapper.h b/Source/bindings/core/v8/CustomElementWrapper.h |
index fa108451a95607b0980dc4ccbd788c52b9478aa7..e17f214be83493b5ca4c4a28545188536804fd54 100644 |
--- a/Source/bindings/core/v8/CustomElementWrapper.h |
+++ b/Source/bindings/core/v8/CustomElementWrapper.h |
@@ -37,17 +37,11 @@ |
namespace blink { |
-class HTMLElement; |
-class SVGElement; |
- |
template<typename ElementType, typename WrapperType> |
class CustomElementWrapper { |
private: |
CustomElementWrapper(); |
- friend v8::Handle<v8::Object> createV8HTMLWrapper(HTMLElement*, v8::Handle<v8::Object>, v8::Isolate*); |
- friend v8::Handle<v8::Object> createV8SVGWrapper(SVGElement*, v8::Handle<v8::Object>, v8::Isolate*); |
- |
static v8::Handle<v8::Object> wrap(PassRefPtrWillBeRawPtr<ElementType>, v8::Handle<v8::Object> creationContext, v8::Isolate*, v8::Handle<v8::Object> (*createSpecificWrapper)(ElementType* element, v8::Handle<v8::Object> creationContext, v8::Isolate*)); |
}; |