Backed out changeset b3df3d58f20c (bug 866450)

This commit is contained in:
Ed Morley 2013-05-02 11:56:54 +01:00
Родитель 31790686b2
Коммит b0210309e0
1 изменённых файлов: 4 добавлений и 3 удалений

Просмотреть файл

@ -68,9 +68,10 @@ public:
return false;
}
JSContext* cx = sc->GetNativeContext();
JS::Rooted<JSObject*> global(cx, sc->GetNativeGlobal());
rv = nsContentUtils::WrapNative(cx, global, adapter, aValue);
rv = nsContentUtils::WrapNative(sc->GetNativeContext(),
sc->GetNativeGlobal(),
adapter,
aValue);
if (NS_FAILED(rv)) {
NS_WARNING("Cannot create native object!");
SetError(NS_LITERAL_STRING("BluetoothNativeObjectError"));