diff options
Diffstat (limited to 'webkit/glue/cpp_bound_class.cc')
-rw-r--r-- | webkit/glue/cpp_bound_class.cc | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/webkit/glue/cpp_bound_class.cc b/webkit/glue/cpp_bound_class.cc index 09c3f40..d58fc4e 100644 --- a/webkit/glue/cpp_bound_class.cc +++ b/webkit/glue/cpp_bound_class.cc @@ -173,6 +173,10 @@ NPClass CppNPObject::np_class_ = { return obj->bound_class->SetProperty(ident, value); } +CppBoundClass::CppBoundClass() + : bound_to_frame_(false) { +} + CppBoundClass::~CppBoundClass() { for (MethodList::iterator i = methods_.begin(); i != methods_.end(); ++i) delete i->second; |