Index: Source/bindings/core/v8/CustomElementBinding.cpp |
diff --git a/Source/bindings/core/v8/CustomElementBinding.cpp b/Source/bindings/core/v8/CustomElementBinding.cpp |
index f538a9eee53e4f6f730dc7bea07c90131ff32f75..b9622e2df0aaff1f216b325f4ac1efb115bc5ee6 100644 |
--- a/Source/bindings/core/v8/CustomElementBinding.cpp |
+++ b/Source/bindings/core/v8/CustomElementBinding.cpp |
@@ -33,18 +33,16 @@ |
namespace blink { |
-PassOwnPtr<CustomElementBinding> CustomElementBinding::create(v8::Isolate* isolate, v8::Handle<v8::Object> prototype, const WrapperTypeInfo* wrapperType) |
+PassOwnPtr<CustomElementBinding> CustomElementBinding::create(v8::Isolate* isolate, v8::Handle<v8::Object> prototype) |
{ |
- return adoptPtr(new CustomElementBinding(isolate, prototype, wrapperType)); |
+ return adoptPtr(new CustomElementBinding(isolate, prototype)); |
} |
-CustomElementBinding::CustomElementBinding(v8::Isolate* isolate, v8::Handle<v8::Object> prototype, const WrapperTypeInfo* wrapperType) |
+CustomElementBinding::CustomElementBinding(v8::Isolate* isolate, v8::Handle<v8::Object> prototype) |
: m_isolate(isolate) |
, m_prototype(isolate, prototype) |
- , m_wrapperType(wrapperType) |
{ |
ASSERT(!m_prototype.isEmpty()); |
- ASSERT(m_wrapperType); |
} |
} // namespace blink |