Copy as Markdown

Other Tools

/*
* DO NOT EDIT. THIS FILE IS GENERATED FROM $SRCDIR/toolkit/components/asyncshutdown/nsIAsyncShutdown.idl
*/
#ifndef __gen_nsIAsyncShutdown_h__
#define __gen_nsIAsyncShutdown_h__
#include "nsISupports.h"
#include "nsIPropertyBag.h"
#include "nsIVariant.h"
#include "js/Value.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
class nsIAsyncShutdownClient; /* forward declaration */
/* starting interface: nsIAsyncShutdownBlocker */
#define NS_IASYNCSHUTDOWNBLOCKER_IID_STR "4ef43f29-6715-4b57-a750-2ff83695ddce"
#define NS_IASYNCSHUTDOWNBLOCKER_IID \
{0x4ef43f29, 0x6715, 0x4b57, \
{ 0xa7, 0x50, 0x2f, 0xf8, 0x36, 0x95, 0xdd, 0xce }}
class NS_NO_VTABLE nsIAsyncShutdownBlocker : public nsISupports {
public:
NS_DECLARE_STATIC_IID_ACCESSOR(NS_IASYNCSHUTDOWNBLOCKER_IID)
/* Used by ToJSValue to check which scriptable interface is implemented. */
using ScriptableInterfaceType = nsIAsyncShutdownBlocker;
/* readonly attribute AString name; */
JS_HAZ_CAN_RUN_SCRIPT NS_IMETHOD GetName(nsAString& aName) = 0;
/* void blockShutdown (in nsIAsyncShutdownClient aBarrierClient); */
JS_HAZ_CAN_RUN_SCRIPT NS_IMETHOD BlockShutdown(nsIAsyncShutdownClient *aBarrierClient) = 0;
/* readonly attribute nsIPropertyBag state; */
JS_HAZ_CAN_RUN_SCRIPT NS_IMETHOD GetState(nsIPropertyBag **aState) = 0;
};
NS_DEFINE_STATIC_IID_ACCESSOR(nsIAsyncShutdownBlocker, NS_IASYNCSHUTDOWNBLOCKER_IID)
/* Use this macro when declaring classes that implement this interface. */
#define NS_DECL_NSIASYNCSHUTDOWNBLOCKER \
NS_IMETHOD GetName(nsAString& aName) override; \
NS_IMETHOD BlockShutdown(nsIAsyncShutdownClient *aBarrierClient) override; \
NS_IMETHOD GetState(nsIPropertyBag **aState) 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_NSIASYNCSHUTDOWNBLOCKER \
nsresult GetName(nsAString& aName); \
nsresult BlockShutdown(nsIAsyncShutdownClient *aBarrierClient); \
nsresult GetState(nsIPropertyBag **aState);
/* Use this macro to declare functions that forward the behavior of this interface to another object. */
#define NS_FORWARD_NSIASYNCSHUTDOWNBLOCKER(_to) \
NS_IMETHOD GetName(nsAString& aName) override { return _to GetName(aName); } \
NS_IMETHOD BlockShutdown(nsIAsyncShutdownClient *aBarrierClient) override { return _to BlockShutdown(aBarrierClient); } \
NS_IMETHOD GetState(nsIPropertyBag **aState) override { return _to GetState(aState); }
/* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
#define NS_FORWARD_SAFE_NSIASYNCSHUTDOWNBLOCKER(_to) \
NS_IMETHOD GetName(nsAString& aName) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetName(aName); } \
NS_IMETHOD BlockShutdown(nsIAsyncShutdownClient *aBarrierClient) override { return !_to ? NS_ERROR_NULL_POINTER : _to->BlockShutdown(aBarrierClient); } \
NS_IMETHOD GetState(nsIPropertyBag **aState) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetState(aState); }
/* starting interface: nsIAsyncShutdownClient */
#define NS_IASYNCSHUTDOWNCLIENT_IID_STR "d2031049-b990-43a2-95be-59f8a3ca5954"
#define NS_IASYNCSHUTDOWNCLIENT_IID \
{0xd2031049, 0xb990, 0x43a2, \
{ 0x95, 0xbe, 0x59, 0xf8, 0xa3, 0xca, 0x59, 0x54 }}
class NS_NO_VTABLE nsIAsyncShutdownClient : public nsISupports {
public:
NS_DECLARE_STATIC_IID_ACCESSOR(NS_IASYNCSHUTDOWNCLIENT_IID)
/* Used by ToJSValue to check which scriptable interface is implemented. */
using ScriptableInterfaceType = nsIAsyncShutdownClient;
/* readonly attribute AString name; */
JS_HAZ_CAN_RUN_SCRIPT NS_IMETHOD GetName(nsAString& aName) = 0;
/* readonly attribute boolean isClosed; */
JS_HAZ_CAN_RUN_SCRIPT NS_IMETHOD GetIsClosed(bool *aIsClosed) = 0;
/* void addBlocker (in nsIAsyncShutdownBlocker aBlocker, in AString aFileName, in long aLineNumber, in AString aStack); */
JS_HAZ_CAN_RUN_SCRIPT NS_IMETHOD AddBlocker(nsIAsyncShutdownBlocker *aBlocker, const nsAString& aFileName, int32_t aLineNumber, const nsAString& aStack) = 0;
/* void removeBlocker (in nsIAsyncShutdownBlocker aBlocker); */
JS_HAZ_CAN_RUN_SCRIPT NS_IMETHOD RemoveBlocker(nsIAsyncShutdownBlocker *aBlocker) = 0;
/* readonly attribute jsval jsclient; */
JS_HAZ_CAN_RUN_SCRIPT NS_IMETHOD GetJsclient(JS::MutableHandle<JS::Value> aJsclient) = 0;
};
NS_DEFINE_STATIC_IID_ACCESSOR(nsIAsyncShutdownClient, NS_IASYNCSHUTDOWNCLIENT_IID)
/* Use this macro when declaring classes that implement this interface. */
#define NS_DECL_NSIASYNCSHUTDOWNCLIENT \
NS_IMETHOD GetName(nsAString& aName) override; \
NS_IMETHOD GetIsClosed(bool *aIsClosed) override; \
NS_IMETHOD AddBlocker(nsIAsyncShutdownBlocker *aBlocker, const nsAString& aFileName, int32_t aLineNumber, const nsAString& aStack) override; \
NS_IMETHOD RemoveBlocker(nsIAsyncShutdownBlocker *aBlocker) override; \
NS_IMETHOD GetJsclient(JS::MutableHandle<JS::Value> aJsclient) 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_NSIASYNCSHUTDOWNCLIENT \
nsresult GetName(nsAString& aName); \
nsresult GetIsClosed(bool *aIsClosed); \
nsresult AddBlocker(nsIAsyncShutdownBlocker *aBlocker, const nsAString& aFileName, int32_t aLineNumber, const nsAString& aStack); \
nsresult RemoveBlocker(nsIAsyncShutdownBlocker *aBlocker); \
nsresult GetJsclient(JS::MutableHandle<JS::Value> aJsclient);
/* Use this macro to declare functions that forward the behavior of this interface to another object. */
#define NS_FORWARD_NSIASYNCSHUTDOWNCLIENT(_to) \
NS_IMETHOD GetName(nsAString& aName) override { return _to GetName(aName); } \
NS_IMETHOD GetIsClosed(bool *aIsClosed) override { return _to GetIsClosed(aIsClosed); } \
NS_IMETHOD AddBlocker(nsIAsyncShutdownBlocker *aBlocker, const nsAString& aFileName, int32_t aLineNumber, const nsAString& aStack) override { return _to AddBlocker(aBlocker, aFileName, aLineNumber, aStack); } \
NS_IMETHOD RemoveBlocker(nsIAsyncShutdownBlocker *aBlocker) override { return _to RemoveBlocker(aBlocker); } \
NS_IMETHOD GetJsclient(JS::MutableHandle<JS::Value> aJsclient) override { return _to GetJsclient(aJsclient); }
/* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
#define NS_FORWARD_SAFE_NSIASYNCSHUTDOWNCLIENT(_to) \
NS_IMETHOD GetName(nsAString& aName) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetName(aName); } \
NS_IMETHOD GetIsClosed(bool *aIsClosed) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetIsClosed(aIsClosed); } \
NS_IMETHOD AddBlocker(nsIAsyncShutdownBlocker *aBlocker, const nsAString& aFileName, int32_t aLineNumber, const nsAString& aStack) override { return !_to ? NS_ERROR_NULL_POINTER : _to->AddBlocker(aBlocker, aFileName, aLineNumber, aStack); } \
NS_IMETHOD RemoveBlocker(nsIAsyncShutdownBlocker *aBlocker) override { return !_to ? NS_ERROR_NULL_POINTER : _to->RemoveBlocker(aBlocker); } \
NS_IMETHOD GetJsclient(JS::MutableHandle<JS::Value> aJsclient) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetJsclient(aJsclient); }
/* starting interface: nsIAsyncShutdownCompletionCallback */
#define NS_IASYNCSHUTDOWNCOMPLETIONCALLBACK_IID_STR "910c9309-1da0-4dd0-8bdb-a325a38c604e"
#define NS_IASYNCSHUTDOWNCOMPLETIONCALLBACK_IID \
{0x910c9309, 0x1da0, 0x4dd0, \
{ 0x8b, 0xdb, 0xa3, 0x25, 0xa3, 0x8c, 0x60, 0x4e }}
class NS_NO_VTABLE nsIAsyncShutdownCompletionCallback : public nsISupports {
public:
NS_DECLARE_STATIC_IID_ACCESSOR(NS_IASYNCSHUTDOWNCOMPLETIONCALLBACK_IID)
/* Used by ToJSValue to check which scriptable interface is implemented. */
using ScriptableInterfaceType = nsIAsyncShutdownCompletionCallback;
/* void done (); */
JS_HAZ_CAN_RUN_SCRIPT NS_IMETHOD Done(void) = 0;
};
NS_DEFINE_STATIC_IID_ACCESSOR(nsIAsyncShutdownCompletionCallback, NS_IASYNCSHUTDOWNCOMPLETIONCALLBACK_IID)
/* Use this macro when declaring classes that implement this interface. */
#define NS_DECL_NSIASYNCSHUTDOWNCOMPLETIONCALLBACK \
NS_IMETHOD Done(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_NSIASYNCSHUTDOWNCOMPLETIONCALLBACK \
nsresult Done(void);
/* Use this macro to declare functions that forward the behavior of this interface to another object. */
#define NS_FORWARD_NSIASYNCSHUTDOWNCOMPLETIONCALLBACK(_to) \
NS_IMETHOD Done(void) override { return _to Done(); }
/* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
#define NS_FORWARD_SAFE_NSIASYNCSHUTDOWNCOMPLETIONCALLBACK(_to) \
NS_IMETHOD Done(void) override { return !_to ? NS_ERROR_NULL_POINTER : _to->Done(); }
/* starting interface: nsIAsyncShutdownBarrier */
#define NS_IASYNCSHUTDOWNBARRIER_IID_STR "50fa8a86-9c91-4256-8389-17d310adec90"
#define NS_IASYNCSHUTDOWNBARRIER_IID \
{0x50fa8a86, 0x9c91, 0x4256, \
{ 0x83, 0x89, 0x17, 0xd3, 0x10, 0xad, 0xec, 0x90 }}
class NS_NO_VTABLE nsIAsyncShutdownBarrier : public nsISupports {
public:
NS_DECLARE_STATIC_IID_ACCESSOR(NS_IASYNCSHUTDOWNBARRIER_IID)
/* Used by ToJSValue to check which scriptable interface is implemented. */
using ScriptableInterfaceType = nsIAsyncShutdownBarrier;
/* readonly attribute nsIAsyncShutdownClient client; */
JS_HAZ_CAN_RUN_SCRIPT NS_IMETHOD GetClient(nsIAsyncShutdownClient **aClient) = 0;
/* readonly attribute nsIPropertyBag state; */
JS_HAZ_CAN_RUN_SCRIPT NS_IMETHOD GetState(nsIPropertyBag **aState) = 0;
/* void wait (in nsIAsyncShutdownCompletionCallback aOnReady); */
JS_HAZ_CAN_RUN_SCRIPT NS_IMETHOD Wait(nsIAsyncShutdownCompletionCallback *aOnReady) = 0;
};
NS_DEFINE_STATIC_IID_ACCESSOR(nsIAsyncShutdownBarrier, NS_IASYNCSHUTDOWNBARRIER_IID)
/* Use this macro when declaring classes that implement this interface. */
#define NS_DECL_NSIASYNCSHUTDOWNBARRIER \
NS_IMETHOD GetClient(nsIAsyncShutdownClient **aClient) override; \
NS_IMETHOD GetState(nsIPropertyBag **aState) override; \
NS_IMETHOD Wait(nsIAsyncShutdownCompletionCallback *aOnReady) 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_NSIASYNCSHUTDOWNBARRIER \
nsresult GetClient(nsIAsyncShutdownClient **aClient); \
nsresult GetState(nsIPropertyBag **aState); \
nsresult Wait(nsIAsyncShutdownCompletionCallback *aOnReady);
/* Use this macro to declare functions that forward the behavior of this interface to another object. */
#define NS_FORWARD_NSIASYNCSHUTDOWNBARRIER(_to) \
NS_IMETHOD GetClient(nsIAsyncShutdownClient **aClient) override { return _to GetClient(aClient); } \
NS_IMETHOD GetState(nsIPropertyBag **aState) override { return _to GetState(aState); } \
NS_IMETHOD Wait(nsIAsyncShutdownCompletionCallback *aOnReady) override { return _to Wait(aOnReady); }
/* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
#define NS_FORWARD_SAFE_NSIASYNCSHUTDOWNBARRIER(_to) \
NS_IMETHOD GetClient(nsIAsyncShutdownClient **aClient) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetClient(aClient); } \
NS_IMETHOD GetState(nsIPropertyBag **aState) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetState(aState); } \
NS_IMETHOD Wait(nsIAsyncShutdownCompletionCallback *aOnReady) override { return !_to ? NS_ERROR_NULL_POINTER : _to->Wait(aOnReady); }
/* starting interface: nsIAsyncShutdownService */
#define NS_IASYNCSHUTDOWNSERVICE_IID_STR "db365c78-c860-4e64-9a63-25b73f89a016"
#define NS_IASYNCSHUTDOWNSERVICE_IID \
{0xdb365c78, 0xc860, 0x4e64, \
{ 0x9a, 0x63, 0x25, 0xb7, 0x3f, 0x89, 0xa0, 0x16 }}
class NS_NO_VTABLE nsIAsyncShutdownService : public nsISupports {
public:
NS_DECLARE_STATIC_IID_ACCESSOR(NS_IASYNCSHUTDOWNSERVICE_IID)
/* Used by ToJSValue to check which scriptable interface is implemented. */
using ScriptableInterfaceType = nsIAsyncShutdownService;
/* nsIAsyncShutdownBarrier makeBarrier (in AString aName); */
JS_HAZ_CAN_RUN_SCRIPT NS_IMETHOD MakeBarrier(const nsAString& aName, nsIAsyncShutdownBarrier **_retval) = 0;
/* readonly attribute nsIAsyncShutdownClient profileBeforeChange; */
JS_HAZ_CAN_RUN_SCRIPT NS_IMETHOD GetProfileBeforeChange(nsIAsyncShutdownClient **aProfileBeforeChange) = 0;
/* readonly attribute nsIAsyncShutdownClient profileChangeTeardown; */
JS_HAZ_CAN_RUN_SCRIPT NS_IMETHOD GetProfileChangeTeardown(nsIAsyncShutdownClient **aProfileChangeTeardown) = 0;
/* readonly attribute nsIAsyncShutdownClient quitApplicationGranted; */
JS_HAZ_CAN_RUN_SCRIPT NS_IMETHOD GetQuitApplicationGranted(nsIAsyncShutdownClient **aQuitApplicationGranted) = 0;
/* readonly attribute nsIAsyncShutdownClient sendTelemetry; */
JS_HAZ_CAN_RUN_SCRIPT NS_IMETHOD GetSendTelemetry(nsIAsyncShutdownClient **aSendTelemetry) = 0;
/* readonly attribute nsIAsyncShutdownClient webWorkersShutdown; */
JS_HAZ_CAN_RUN_SCRIPT NS_IMETHOD GetWebWorkersShutdown(nsIAsyncShutdownClient **aWebWorkersShutdown) = 0;
/* readonly attribute nsIAsyncShutdownClient xpcomWillShutdown; */
JS_HAZ_CAN_RUN_SCRIPT NS_IMETHOD GetXpcomWillShutdown(nsIAsyncShutdownClient **aXpcomWillShutdown) = 0;
};
NS_DEFINE_STATIC_IID_ACCESSOR(nsIAsyncShutdownService, NS_IASYNCSHUTDOWNSERVICE_IID)
/* Use this macro when declaring classes that implement this interface. */
#define NS_DECL_NSIASYNCSHUTDOWNSERVICE \
NS_IMETHOD MakeBarrier(const nsAString& aName, nsIAsyncShutdownBarrier **_retval) override; \
NS_IMETHOD GetProfileBeforeChange(nsIAsyncShutdownClient **aProfileBeforeChange) override; \
NS_IMETHOD GetProfileChangeTeardown(nsIAsyncShutdownClient **aProfileChangeTeardown) override; \
NS_IMETHOD GetQuitApplicationGranted(nsIAsyncShutdownClient **aQuitApplicationGranted) override; \
NS_IMETHOD GetSendTelemetry(nsIAsyncShutdownClient **aSendTelemetry) override; \
NS_IMETHOD GetWebWorkersShutdown(nsIAsyncShutdownClient **aWebWorkersShutdown) override; \
NS_IMETHOD GetXpcomWillShutdown(nsIAsyncShutdownClient **aXpcomWillShutdown) 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_NSIASYNCSHUTDOWNSERVICE \
nsresult MakeBarrier(const nsAString& aName, nsIAsyncShutdownBarrier **_retval); \
nsresult GetProfileBeforeChange(nsIAsyncShutdownClient **aProfileBeforeChange); \
nsresult GetProfileChangeTeardown(nsIAsyncShutdownClient **aProfileChangeTeardown); \
nsresult GetQuitApplicationGranted(nsIAsyncShutdownClient **aQuitApplicationGranted); \
nsresult GetSendTelemetry(nsIAsyncShutdownClient **aSendTelemetry); \
nsresult GetWebWorkersShutdown(nsIAsyncShutdownClient **aWebWorkersShutdown); \
nsresult GetXpcomWillShutdown(nsIAsyncShutdownClient **aXpcomWillShutdown);
/* Use this macro to declare functions that forward the behavior of this interface to another object. */
#define NS_FORWARD_NSIASYNCSHUTDOWNSERVICE(_to) \
NS_IMETHOD MakeBarrier(const nsAString& aName, nsIAsyncShutdownBarrier **_retval) override { return _to MakeBarrier(aName, _retval); } \
NS_IMETHOD GetProfileBeforeChange(nsIAsyncShutdownClient **aProfileBeforeChange) override { return _to GetProfileBeforeChange(aProfileBeforeChange); } \
NS_IMETHOD GetProfileChangeTeardown(nsIAsyncShutdownClient **aProfileChangeTeardown) override { return _to GetProfileChangeTeardown(aProfileChangeTeardown); } \
NS_IMETHOD GetQuitApplicationGranted(nsIAsyncShutdownClient **aQuitApplicationGranted) override { return _to GetQuitApplicationGranted(aQuitApplicationGranted); } \
NS_IMETHOD GetSendTelemetry(nsIAsyncShutdownClient **aSendTelemetry) override { return _to GetSendTelemetry(aSendTelemetry); } \
NS_IMETHOD GetWebWorkersShutdown(nsIAsyncShutdownClient **aWebWorkersShutdown) override { return _to GetWebWorkersShutdown(aWebWorkersShutdown); } \
NS_IMETHOD GetXpcomWillShutdown(nsIAsyncShutdownClient **aXpcomWillShutdown) override { return _to GetXpcomWillShutdown(aXpcomWillShutdown); }
/* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
#define NS_FORWARD_SAFE_NSIASYNCSHUTDOWNSERVICE(_to) \
NS_IMETHOD MakeBarrier(const nsAString& aName, nsIAsyncShutdownBarrier **_retval) override { return !_to ? NS_ERROR_NULL_POINTER : _to->MakeBarrier(aName, _retval); } \
NS_IMETHOD GetProfileBeforeChange(nsIAsyncShutdownClient **aProfileBeforeChange) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetProfileBeforeChange(aProfileBeforeChange); } \
NS_IMETHOD GetProfileChangeTeardown(nsIAsyncShutdownClient **aProfileChangeTeardown) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetProfileChangeTeardown(aProfileChangeTeardown); } \
NS_IMETHOD GetQuitApplicationGranted(nsIAsyncShutdownClient **aQuitApplicationGranted) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetQuitApplicationGranted(aQuitApplicationGranted); } \
NS_IMETHOD GetSendTelemetry(nsIAsyncShutdownClient **aSendTelemetry) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetSendTelemetry(aSendTelemetry); } \
NS_IMETHOD GetWebWorkersShutdown(nsIAsyncShutdownClient **aWebWorkersShutdown) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetWebWorkersShutdown(aWebWorkersShutdown); } \
NS_IMETHOD GetXpcomWillShutdown(nsIAsyncShutdownClient **aXpcomWillShutdown) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetXpcomWillShutdown(aXpcomWillShutdown); }
#endif /* __gen_nsIAsyncShutdown_h__ */