Copy as Markdown

Other Tools

/*
* DO NOT EDIT. THIS FILE IS GENERATED FROM $SRCDIR/netwerk/base/nsIHttpPushListener.idl
*/
#ifndef __gen_nsIHttpPushListener_h__
#define __gen_nsIHttpPushListener_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
class nsIHttpChannel; /* forward declaration */
/* starting interface: nsIHttpPushListener */
#define NS_IHTTPPUSHLISTENER_IID_STR "0d6ce59c-ad5d-4520-b4d3-09664868f279"
#define NS_IHTTPPUSHLISTENER_IID \
{0x0d6ce59c, 0xad5d, 0x4520, \
{ 0xb4, 0xd3, 0x09, 0x66, 0x48, 0x68, 0xf2, 0x79 }}
class NS_NO_VTABLE nsIHttpPushListener : public nsISupports {
public:
NS_DECLARE_STATIC_IID_ACCESSOR(NS_IHTTPPUSHLISTENER_IID)
/* Used by ToJSValue to check which scriptable interface is implemented. */
using ScriptableInterfaceType = nsIHttpPushListener;
/* void onPush (in nsIHttpChannel associatedChannel, in nsIHttpChannel pushChannel); */
JS_HAZ_CAN_RUN_SCRIPT NS_IMETHOD OnPush(nsIHttpChannel *associatedChannel, nsIHttpChannel *pushChannel) = 0;
};
NS_DEFINE_STATIC_IID_ACCESSOR(nsIHttpPushListener, NS_IHTTPPUSHLISTENER_IID)
/* Use this macro when declaring classes that implement this interface. */
#define NS_DECL_NSIHTTPPUSHLISTENER \
NS_IMETHOD OnPush(nsIHttpChannel *associatedChannel, nsIHttpChannel *pushChannel) 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_NSIHTTPPUSHLISTENER \
nsresult OnPush(nsIHttpChannel *associatedChannel, nsIHttpChannel *pushChannel);
/* Use this macro to declare functions that forward the behavior of this interface to another object. */
#define NS_FORWARD_NSIHTTPPUSHLISTENER(_to) \
NS_IMETHOD OnPush(nsIHttpChannel *associatedChannel, nsIHttpChannel *pushChannel) override { return _to OnPush(associatedChannel, pushChannel); }
/* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
#define NS_FORWARD_SAFE_NSIHTTPPUSHLISTENER(_to) \
NS_IMETHOD OnPush(nsIHttpChannel *associatedChannel, nsIHttpChannel *pushChannel) override { return !_to ? NS_ERROR_NULL_POINTER : _to->OnPush(associatedChannel, pushChannel); }
#endif /* __gen_nsIHttpPushListener_h__ */