mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
2999d4406e
--HG-- extra : rebase_source : b3440548322d65b2bd01862fb863e6197eb263c6
46 lines
2.1 KiB
C++
46 lines
2.1 KiB
C++
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
|
/* vim: set ts=8 sts=4 et sw=4 tw=99: */
|
|
/* 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/. */
|
|
|
|
#ifndef __CrossOriginWrapper_h__
|
|
#define __CrossOriginWrapper_h__
|
|
|
|
#include "mozilla/Attributes.h"
|
|
|
|
#include "jswrapper.h"
|
|
|
|
namespace xpc {
|
|
|
|
class WaiveXrayWrapper : public js::CrossCompartmentWrapper {
|
|
public:
|
|
explicit MOZ_CONSTEXPR WaiveXrayWrapper(unsigned flags) : js::CrossCompartmentWrapper(flags) { }
|
|
|
|
virtual bool getOwnPropertyDescriptor(JSContext *cx, JS::Handle<JSObject*> wrapper,
|
|
JS::Handle<jsid> id,
|
|
JS::MutableHandle<JSPropertyDescriptor> desc) const MOZ_OVERRIDE;
|
|
virtual bool getPrototypeOf(JSContext *cx, JS::Handle<JSObject*> wrapper,
|
|
JS::MutableHandle<JSObject*> protop) 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 call(JSContext *cx, JS::Handle<JSObject*> wrapper,
|
|
const JS::CallArgs &args) const MOZ_OVERRIDE;
|
|
virtual bool construct(JSContext *cx, JS::Handle<JSObject*> wrapper,
|
|
const JS::CallArgs &args) const MOZ_OVERRIDE;
|
|
|
|
virtual bool iterate(JSContext *cx, JS::Handle<JSObject*> proxy, unsigned flags,
|
|
JS::MutableHandle<JS::Value> vp) const MOZ_OVERRIDE;
|
|
virtual bool nativeCall(JSContext *cx, JS::IsAcceptableThis test,
|
|
JS::NativeImpl impl, JS::CallArgs args) const MOZ_OVERRIDE;
|
|
virtual bool getPropertyDescriptor(JSContext *cx, JS::Handle<JSObject*> wrapper,
|
|
JS::Handle<jsid> id,
|
|
JS::MutableHandle<JSPropertyDescriptor> desc) const MOZ_OVERRIDE;
|
|
|
|
static const WaiveXrayWrapper singleton;
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|