js/xpconnect/wrappers/WaiveXrayWrapper.h

changeset 0
6474c204b198
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/js/xpconnect/wrappers/WaiveXrayWrapper.h	Wed Dec 31 06:09:35 2014 +0100
     1.3 @@ -0,0 +1,46 @@
     1.4 +/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
     1.5 +/* vim: set ts=8 sts=4 et sw=4 tw=99: */
     1.6 +/* This Source Code Form is subject to the terms of the Mozilla Public
     1.7 + * License, v. 2.0. If a copy of the MPL was not distributed with this
     1.8 + * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
     1.9 +
    1.10 +#ifndef __CrossOriginWrapper_h__
    1.11 +#define __CrossOriginWrapper_h__
    1.12 +
    1.13 +#include "mozilla/Attributes.h"
    1.14 +
    1.15 +#include "jswrapper.h"
    1.16 +
    1.17 +namespace xpc {
    1.18 +
    1.19 +class WaiveXrayWrapper : public js::CrossCompartmentWrapper {
    1.20 +  public:
    1.21 +    WaiveXrayWrapper(unsigned flags);
    1.22 +    virtual ~WaiveXrayWrapper();
    1.23 +
    1.24 +    virtual bool getPropertyDescriptor(JSContext *cx, JS::Handle<JSObject*> wrapper,
    1.25 +                                       JS::Handle<jsid> id,
    1.26 +                                       JS::MutableHandle<JSPropertyDescriptor> desc) MOZ_OVERRIDE;
    1.27 +    virtual bool getOwnPropertyDescriptor(JSContext *cx, JS::Handle<JSObject*> wrapper,
    1.28 +                                          JS::Handle<jsid> id,
    1.29 +                                          JS::MutableHandle<JSPropertyDescriptor> desc) MOZ_OVERRIDE;
    1.30 +    virtual bool get(JSContext *cx, JS::Handle<JSObject*> wrapper, JS::Handle<JSObject*> receiver,
    1.31 +                     JS::Handle<jsid> id, JS::MutableHandle<JS::Value> vp) MOZ_OVERRIDE;
    1.32 +
    1.33 +    virtual bool call(JSContext *cx, JS::Handle<JSObject*> wrapper,
    1.34 +                      const JS::CallArgs &args) MOZ_OVERRIDE;
    1.35 +    virtual bool construct(JSContext *cx, JS::Handle<JSObject*> wrapper,
    1.36 +                           const JS::CallArgs &args) MOZ_OVERRIDE;
    1.37 +
    1.38 +    virtual bool nativeCall(JSContext *cx, JS::IsAcceptableThis test,
    1.39 +                            JS::NativeImpl impl, JS::CallArgs args) MOZ_OVERRIDE;
    1.40 +
    1.41 +    virtual bool getPrototypeOf(JSContext *cx, JS::Handle<JSObject*> wrapper,
    1.42 +                                JS::MutableHandle<JSObject*> protop) MOZ_OVERRIDE;
    1.43 +
    1.44 +    static WaiveXrayWrapper singleton;
    1.45 +};
    1.46 +
    1.47 +}
    1.48 +
    1.49 +#endif

mercurial