| Index: Source/bindings/core/v8/ScriptWrappable.cpp
|
| diff --git a/Source/bindings/core/v8/ScriptWrappable.cpp b/Source/bindings/core/v8/ScriptWrappable.cpp
|
| index cc508732c0c13e27db1420123580be625efa16f6..6db86fc252b5fb5d06bc1a09577ea9769c657223 100644
|
| --- a/Source/bindings/core/v8/ScriptWrappable.cpp
|
| +++ b/Source/bindings/core/v8/ScriptWrappable.cpp
|
| @@ -57,7 +57,7 @@ v8::Handle<v8::Object> ScriptWrappableBase::wrap(v8::Handle<v8::Object> creation
|
|
|
| ASSERT(!DOMDataStore::containsWrapper(this, isolate));
|
|
|
| - v8::Handle<v8::Object> wrapper = V8DOMWrapper::createWrapper(creationContext, wrapperTypeInfo, this, isolate);
|
| + v8::Handle<v8::Object> wrapper = V8DOMWrapper::createWrapper(isolate, creationContext, wrapperTypeInfo, this);
|
| if (UNLIKELY(wrapper.IsEmpty()))
|
| return wrapper;
|
|
|
| @@ -78,7 +78,7 @@ v8::Handle<v8::Object> ScriptWrappable::wrap(v8::Handle<v8::Object> creationCont
|
|
|
| ASSERT(!DOMDataStore::containsWrapper(this, isolate));
|
|
|
| - v8::Handle<v8::Object> wrapper = V8DOMWrapper::createWrapper(creationContext, wrapperTypeInfo, toScriptWrappableBase(), isolate);
|
| + v8::Handle<v8::Object> wrapper = V8DOMWrapper::createWrapper(isolate, creationContext, wrapperTypeInfo, toScriptWrappableBase());
|
| if (UNLIKELY(wrapper.IsEmpty()))
|
| return wrapper;
|
|
|
|
|