Backed out changeset 79d2db9a2a2c (bug 1042398) for build bustage on a CLOSED TREE

This commit is contained in:
Wes Kocher 2014-07-23 13:08:24 -07:00
parent dab038ab36
commit 575bd1d6b6
2 changed files with 0 additions and 11 deletions

View File

@ -66,14 +66,6 @@ WaiveXrayWrapper::get(JSContext *cx, HandleObject wrapper,
WrapperFactory::WaiveXrayAndWrap(cx, vp);
}
bool
WaiveXrayWrapper::iterate(JSContext *cx, HandleObject proxy, unsigned flags,
MutableHandleValue vp) const
{
return CrossCompartmentWrapper::iterate(cx, proxy, flags, vp) &&
WrapperFactory::WaiveXrayAndWrap(cx, vp);
}
bool
WaiveXrayWrapper::call(JSContext *cx, HandleObject wrapper, const JS::CallArgs &args) const
{

View File

@ -26,9 +26,6 @@ class WaiveXrayWrapper : public js::CrossCompartmentWrapper {
JS::MutableHandle<JSPropertyDescriptor> desc) const MOZ_OVERRIDE;
virtual bool get(JSContext *cx, JS::Handle<JSObject*> wrapper, JS::Handle<JSObject*> receiver,
JS::Handle<jsid> id, JS::MutableHandle<JS::Value> vp) const MOZ_OVERRIDE;
virtual bool iterate(JSContext *cx, HandleObject proxy, unsigned flags,
MutableHandleValue vp) const MOZ_OVERRIDE;
virtual bool call(JSContext *cx, JS::Handle<JSObject*> wrapper,
const JS::CallArgs &args) const MOZ_OVERRIDE;