Index: Source/bindings/templates/methods.cpp |
diff --git a/Source/bindings/templates/methods.cpp b/Source/bindings/templates/methods.cpp |
index 31e9780c90bc961c12b06d6c151346079799f2f0..ad7c503b892a95c67afc616b760e58764d86da73 100644 |
--- a/Source/bindings/templates/methods.cpp |
+++ b/Source/bindings/templates/methods.cpp |
@@ -579,7 +579,7 @@ v8::Handle<v8::Object> wrapper = info.Holder(); |
{% if is_script_wrappable %} |
impl->associateWithWrapper(&{{constructor_class}}::wrapperTypeInfo, wrapper, info.GetIsolate()); |
{% else %} |
-V8DOMWrapper::associateObjectWithWrapper<{{v8_class}}>(impl.release(), &{{constructor_class}}::wrapperTypeInfo, wrapper, info.GetIsolate()); |
+V8DOMWrapper::associateObjectWithWrapper<{{v8_class}}>(info.GetIsolate(), impl.release(), &{{constructor_class}}::wrapperTypeInfo, wrapper); |
{% endif %} |
{% endif %} |
v8SetReturnValue(info, wrapper); |