Index: Source/bindings/core/v8/ScriptWrappable.cpp |
diff --git a/Source/bindings/core/v8/ScriptWrappable.cpp b/Source/bindings/core/v8/ScriptWrappable.cpp |
index 446fdc26140120f46ca86b181839f2e44349acd5..31834e35933317764748e95baa53a5efb2da0aed 100644 |
--- a/Source/bindings/core/v8/ScriptWrappable.cpp |
+++ b/Source/bindings/core/v8/ScriptWrappable.cpp |
@@ -55,10 +55,10 @@ v8::Handle<v8::Object> ScriptWrappable::wrap(v8::Handle<v8::Object> creationCont |
return wrapper; |
wrapperTypeInfo->installConditionallyEnabledProperties(wrapper, isolate); |
- return associateWithWrapper(wrapperTypeInfo, wrapper, isolate); |
+ return associateWithWrapper(isolate, wrapperTypeInfo, wrapper); |
} |
-v8::Handle<v8::Object> ScriptWrappable::associateWithWrapper(const WrapperTypeInfo* wrapperTypeInfo, v8::Handle<v8::Object> wrapper, v8::Isolate* isolate) |
+v8::Handle<v8::Object> ScriptWrappable::associateWithWrapper(v8::Isolate* isolate, const WrapperTypeInfo* wrapperTypeInfo, v8::Handle<v8::Object> wrapper) |
{ |
return V8DOMWrapper::associateObjectWithWrapper(isolate, this, wrapperTypeInfo, wrapper); |
} |