gecko-dev/js/xpconnect/wrappers/WaiveXrayWrapper.cpp

68 строки
2.1 KiB
C++
Исходник Обычный вид История

2010-07-03 01:09:48 +04:00
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
* vim: set ts=4 sw=4 et tw=99 ft=cpp:
*
2012-05-21 15:12:37 +04:00
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
2010-07-03 01:09:48 +04:00
#include "nsJSPrincipals.h"
#include "XPCWrapper.h"
#include "WaiveXrayWrapper.h"
#include "AccessCheck.h"
#include "WrapperFactory.h"
2010-07-03 01:09:48 +04:00
namespace xpc {
WaiveXrayWrapper::WaiveXrayWrapper(unsigned flags) : js::CrossCompartmentWrapper(flags)
2010-07-03 01:09:48 +04:00
{
}
WaiveXrayWrapper::~WaiveXrayWrapper()
2010-07-03 01:09:48 +04:00
{
}
bool
WaiveXrayWrapper::getPropertyDescriptor(JSContext *cx, JS::Handle<JSObject *>wrapper,
JS::Handle<jsid> id, js::PropertyDescriptor *desc,
unsigned flags)
{
return CrossCompartmentWrapper::getPropertyDescriptor(cx, wrapper, id, desc, flags) &&
WrapperFactory::WaiveXrayAndWrap(cx, &desc->value);
}
bool
WaiveXrayWrapper::getOwnPropertyDescriptor(JSContext *cx, JS::Handle<JSObject *> wrapper,
JS::Handle<jsid> id, js::PropertyDescriptor *desc,
unsigned flags)
{
return CrossCompartmentWrapper::getOwnPropertyDescriptor(cx, wrapper, id, desc, flags) &&
WrapperFactory::WaiveXrayAndWrap(cx, &desc->value);
}
bool
WaiveXrayWrapper::get(JSContext *cx, JSObject *wrapper, JSObject *receiver, jsid id,
js::Value *vp)
{
return CrossCompartmentWrapper::get(cx, wrapper, receiver, id, vp) &&
WrapperFactory::WaiveXrayAndWrap(cx, vp);
}
bool
WaiveXrayWrapper::call(JSContext *cx, JSObject *wrapper, unsigned argc, js::Value *vp)
{
return CrossCompartmentWrapper::call(cx, wrapper, argc, vp) &&
WrapperFactory::WaiveXrayAndWrap(cx, vp);
}
bool
WaiveXrayWrapper::construct(JSContext *cx, JSObject *wrapper,
unsigned argc, js::Value *argv, js::Value *rval)
{
return CrossCompartmentWrapper::construct(cx, wrapper, argc, argv, rval) &&
WrapperFactory::WaiveXrayAndWrap(cx, rval);
}
2010-07-03 01:09:48 +04:00
}