51 lines
1.7 KiB
C++
51 lines
1.7 KiB
C++
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
|
|
* vim: set ts=4 sw=4 et tw=99 ft=cpp:
|
|
*
|
|
* 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 "jsapi.h"
|
|
#include "jswrapper.h"
|
|
|
|
namespace xpc {
|
|
|
|
class NoWaiverWrapper : public js::CrossCompartmentWrapper {
|
|
public:
|
|
NoWaiverWrapper(unsigned flags);
|
|
virtual ~NoWaiverWrapper();
|
|
|
|
virtual bool enter(JSContext *cx, JSObject *wrapper, jsid id, Action act, bool *bp) MOZ_OVERRIDE;
|
|
virtual void leave(JSContext *cx, JSObject *wrapper) MOZ_OVERRIDE;
|
|
|
|
static NoWaiverWrapper singleton;
|
|
};
|
|
|
|
class CrossOriginWrapper : public NoWaiverWrapper {
|
|
public:
|
|
CrossOriginWrapper(unsigned flags);
|
|
virtual ~CrossOriginWrapper();
|
|
|
|
virtual bool getPropertyDescriptor(JSContext *cx, JSObject *wrapper, jsid id,
|
|
bool set, js::PropertyDescriptor *desc) MOZ_OVERRIDE;
|
|
virtual bool getOwnPropertyDescriptor(JSContext *cx, JSObject *wrapper, jsid id,
|
|
bool set, js::PropertyDescriptor *desc) MOZ_OVERRIDE;
|
|
virtual bool get(JSContext *cx, JSObject *wrapper, JSObject *receiver, jsid id,
|
|
js::Value *vp) MOZ_OVERRIDE;
|
|
|
|
virtual bool call(JSContext *cx, JSObject *wrapper, unsigned argc, js::Value *vp) MOZ_OVERRIDE;
|
|
virtual bool construct(JSContext *cx, JSObject *wrapper,
|
|
unsigned argc, js::Value *argv, js::Value *rval) MOZ_OVERRIDE;
|
|
|
|
static CrossOriginWrapper singleton;
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|