Copy as Markdown

Other Tools

/*
* DO NOT EDIT. THIS FILE IS GENERATED FROM $SRCDIR/dom/bindings/test/mozITestInterfaceJS.idl
*/
#ifndef __gen_mozITestInterfaceJS_h__
#define __gen_mozITestInterfaceJS_h__
#include "nsISupports.h"
#include "js/GCAnnotations.h"
/* For IDL files that don't want to include root IDL files. */
#ifndef NS_NO_VTABLE
#define NS_NO_VTABLE
#endif
/* starting interface: mozITestInterfaceJS */
#define MOZITESTINTERFACEJS_IID_STR "9eeb2c12-ddd9-4734-8cfb-c0cdfb136e07"
#define MOZITESTINTERFACEJS_IID \
{0x9eeb2c12, 0xddd9, 0x4734, \
{ 0x8c, 0xfb, 0xc0, 0xcd, 0xfb, 0x13, 0x6e, 0x07 }}
class NS_NO_VTABLE mozITestInterfaceJS : public nsISupports {
public:
NS_DECLARE_STATIC_IID_ACCESSOR(MOZITESTINTERFACEJS_IID)
/* Used by ToJSValue to check which scriptable interface is implemented. */
using ScriptableInterfaceType = mozITestInterfaceJS;
/* void testThrowNsresult (); */
JS_HAZ_CAN_RUN_SCRIPT NS_IMETHOD TestThrowNsresult(void) = 0;
/* void testThrowNsresultFromNative (); */
JS_HAZ_CAN_RUN_SCRIPT NS_IMETHOD TestThrowNsresultFromNative(void) = 0;
};
NS_DEFINE_STATIC_IID_ACCESSOR(mozITestInterfaceJS, MOZITESTINTERFACEJS_IID)
/* Use this macro when declaring classes that implement this interface. */
#define NS_DECL_MOZITESTINTERFACEJS \
NS_IMETHOD TestThrowNsresult(void) override; \
NS_IMETHOD TestThrowNsresultFromNative(void) override;
/* Use this macro when declaring the members of this interface when the
class doesn't implement the interface. This is useful for forwarding. */
#define NS_DECL_NON_VIRTUAL_MOZITESTINTERFACEJS \
nsresult TestThrowNsresult(void); \
nsresult TestThrowNsresultFromNative(void);
/* Use this macro to declare functions that forward the behavior of this interface to another object. */
#define NS_FORWARD_MOZITESTINTERFACEJS(_to) \
NS_IMETHOD TestThrowNsresult(void) override { return _to TestThrowNsresult(); } \
NS_IMETHOD TestThrowNsresultFromNative(void) override { return _to TestThrowNsresultFromNative(); }
/* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
#define NS_FORWARD_SAFE_MOZITESTINTERFACEJS(_to) \
NS_IMETHOD TestThrowNsresult(void) override { return !_to ? NS_ERROR_NULL_POINTER : _to->TestThrowNsresult(); } \
NS_IMETHOD TestThrowNsresultFromNative(void) override { return !_to ? NS_ERROR_NULL_POINTER : _to->TestThrowNsresultFromNative(); }
#endif /* __gen_mozITestInterfaceJS_h__ */