| Index: Source/bindings/templates/interface_base.cpp
|
| diff --git a/Source/bindings/templates/interface_base.cpp b/Source/bindings/templates/interface_base.cpp
|
| index 5887d3d6082ecd77520dfa3a99e9e6fa3a7d1f55..29b519f1af7532df91cb0561f98a075dcf841f1f 100644
|
| --- a/Source/bindings/templates/interface_base.cpp
|
| +++ b/Source/bindings/templates/interface_base.cpp
|
| @@ -51,7 +51,7 @@ void webCoreInitializeScriptWrappableForInterface(WebCore::{{cpp_class_name}}* o
|
| }
|
|
|
| namespace WebCore {
|
| -WrapperTypeInfo {{v8_class_name}}::info = { {{v8_class_name}}::GetTemplate, {{v8_class_name}}::derefObject, 0, 0, 0, {{v8_class_name}}::installPerContextPrototypeProperties, 0, WrapperTypeObjectPrototype };
|
| +WrapperTypeInfo {{v8_class_name}}::info = { {{v8_class_name}}::GetTemplate, {{v8_class_name}}::derefObject, 0, 0, 0, {{v8_class_name}}::installPerContextEnabledPrototypeProperties, 0, WrapperTypeObjectPrototype };
|
|
|
| namespace {{cpp_class_name}}V8Internal {
|
|
|
| @@ -71,6 +71,7 @@ template <typename T> void V8_USE(T) { }
|
| {% block configure_class_template %}{% endblock %}
|
| {% block get_template %}{% endblock %}
|
| {% block has_instance_and_has_instance_in_any_world %}{% endblock %}
|
| +{% block install_per_context_attributes %}{% endblock %}
|
| {% block create_wrapper_and_deref_object %}{% endblock %}
|
| } // namespace WebCore
|
| {% if conditional_string %}
|
|
|