зеркало из https://github.com/mozilla/pjs.git
Bug 595668 - create XPCCallContext in XPC_NW_Construct (r=mrbkap)
This commit is contained in:
Родитель
4799efa9c7
Коммит
31a7bbb99c
|
@ -719,6 +719,13 @@ XPC_NW_Construct(JSContext *cx, uintN argc, jsval *vp)
|
||||||
return ThrowException(NS_ERROR_INVALID_ARG, cx);
|
return ThrowException(NS_ERROR_INVALID_ARG, cx);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
XPCCallContext ccx(JS_CALLER, cx, obj, nsnull, JSID_VOID,
|
||||||
|
argc, JS_ARGV(cx, vp), vp);
|
||||||
|
if(!ccx.IsValid())
|
||||||
|
return JS_FALSE;
|
||||||
|
|
||||||
|
JS_ASSERT(obj == ccx.GetFlattenedJSObject());
|
||||||
|
|
||||||
nsresult rv = wrappedNative->GetScriptableInfo()->
|
nsresult rv = wrappedNative->GetScriptableInfo()->
|
||||||
GetCallback()->Construct(wrappedNative, cx, obj, argc, JS_ARGV(cx, vp), vp,
|
GetCallback()->Construct(wrappedNative, cx, obj, argc, JS_ARGV(cx, vp), vp,
|
||||||
&retval);
|
&retval);
|
||||||
|
|
Загрузка…
Ссылка в новой задаче