| Index: Source/bindings/core/v8/CustomElementBinding.h
|
| diff --git a/Source/bindings/core/v8/CustomElementBinding.h b/Source/bindings/core/v8/CustomElementBinding.h
|
| index ccfcdd1c243a49ed5780e4bf2cf8c41249d3f9d8..c30bfab764a930a47482afe8d287e48542de8ca6 100644
|
| --- a/Source/bindings/core/v8/CustomElementBinding.h
|
| +++ b/Source/bindings/core/v8/CustomElementBinding.h
|
| @@ -37,25 +37,21 @@
|
|
|
| namespace blink {
|
|
|
| -struct WrapperTypeInfo;
|
| -
|
| class CustomElementBinding {
|
| public:
|
| - static PassOwnPtr<CustomElementBinding> create(v8::Isolate*, v8::Handle<v8::Object> prototype, const WrapperTypeInfo*);
|
| + static PassOwnPtr<CustomElementBinding> create(v8::Isolate*, v8::Handle<v8::Object> prototype);
|
|
|
| ~CustomElementBinding() { }
|
|
|
| v8::Handle<v8::Object> prototype() { return m_prototype.newLocal(m_isolate); }
|
| - const WrapperTypeInfo* wrapperType() { return m_wrapperType; }
|
|
|
| private:
|
| - CustomElementBinding(v8::Isolate*, v8::Handle<v8::Object> prototype, const WrapperTypeInfo*);
|
| + CustomElementBinding(v8::Isolate*, v8::Handle<v8::Object> prototype);
|
|
|
| v8::Isolate* m_isolate;
|
| ScopedPersistent<v8::Object> m_prototype;
|
| - const WrapperTypeInfo* m_wrapperType;
|
| };
|
|
|
| -}
|
| +} // namespace blink
|
|
|
| #endif // CustomElementBinding_h
|
|
|