Copy as Markdown

Other Tools

/*
* DO NOT EDIT. THIS FILE IS GENERATED FROM $SRCDIR/netwerk/streamconv/nsIStreamConverter.idl
*/
#ifndef __gen_nsIStreamConverter_h__
#define __gen_nsIStreamConverter_h__
#include "nsIThreadRetargetableStreamListener.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 nsIChannel; /* forward declaration */
class nsIInputStream; /* forward declaration */
/* starting interface: nsIStreamConverter */
#define NS_ISTREAMCONVERTER_IID_STR "0b6e2c69-5cf5-48b0-9dfd-c95950e2cc7b"
#define NS_ISTREAMCONVERTER_IID \
{0x0b6e2c69, 0x5cf5, 0x48b0, \
{ 0x9d, 0xfd, 0xc9, 0x59, 0x50, 0xe2, 0xcc, 0x7b }}
class NS_NO_VTABLE nsIStreamConverter : public nsIThreadRetargetableStreamListener {
public:
NS_DECLARE_STATIC_IID_ACCESSOR(NS_ISTREAMCONVERTER_IID)
/* Used by ToJSValue to check which scriptable interface is implemented. */
using ScriptableInterfaceType = nsIStreamConverter;
/* nsIInputStream convert (in nsIInputStream aFromStream, in string aFromType, in string aToType, in nsISupports aCtxt); */
JS_HAZ_CAN_RUN_SCRIPT NS_IMETHOD Convert(nsIInputStream *aFromStream, const char * aFromType, const char * aToType, nsISupports *aCtxt, nsIInputStream **_retval) = 0;
/* void asyncConvertData (in string aFromType, in string aToType, in nsIStreamListener aListener, in nsISupports aCtxt); */
JS_HAZ_CAN_RUN_SCRIPT NS_IMETHOD AsyncConvertData(const char * aFromType, const char * aToType, nsIStreamListener *aListener, nsISupports *aCtxt) = 0;
/* void maybeRetarget (in nsIRequest request); */
JS_HAZ_CAN_RUN_SCRIPT NS_IMETHOD MaybeRetarget(nsIRequest *request) = 0;
/* ACString getConvertedType (in ACString aFromType, in nsIChannel aChannel); */
JS_HAZ_CAN_RUN_SCRIPT NS_IMETHOD GetConvertedType(const nsACString& aFromType, nsIChannel *aChannel, nsACString& _retval) = 0;
};
NS_DEFINE_STATIC_IID_ACCESSOR(nsIStreamConverter, NS_ISTREAMCONVERTER_IID)
/* Use this macro when declaring classes that implement this interface. */
#define NS_DECL_NSISTREAMCONVERTER \
NS_IMETHOD Convert(nsIInputStream *aFromStream, const char * aFromType, const char * aToType, nsISupports *aCtxt, nsIInputStream **_retval) override; \
NS_IMETHOD AsyncConvertData(const char * aFromType, const char * aToType, nsIStreamListener *aListener, nsISupports *aCtxt) override; \
NS_IMETHOD MaybeRetarget(nsIRequest *request) override; \
NS_IMETHOD GetConvertedType(const nsACString& aFromType, nsIChannel *aChannel, nsACString& _retval) 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_NSISTREAMCONVERTER \
nsresult Convert(nsIInputStream *aFromStream, const char * aFromType, const char * aToType, nsISupports *aCtxt, nsIInputStream **_retval); \
nsresult AsyncConvertData(const char * aFromType, const char * aToType, nsIStreamListener *aListener, nsISupports *aCtxt); \
nsresult MaybeRetarget(nsIRequest *request); \
nsresult GetConvertedType(const nsACString& aFromType, nsIChannel *aChannel, nsACString& _retval);
/* Use this macro to declare functions that forward the behavior of this interface to another object. */
#define NS_FORWARD_NSISTREAMCONVERTER(_to) \
NS_IMETHOD Convert(nsIInputStream *aFromStream, const char * aFromType, const char * aToType, nsISupports *aCtxt, nsIInputStream **_retval) override { return _to Convert(aFromStream, aFromType, aToType, aCtxt, _retval); } \
NS_IMETHOD AsyncConvertData(const char * aFromType, const char * aToType, nsIStreamListener *aListener, nsISupports *aCtxt) override { return _to AsyncConvertData(aFromType, aToType, aListener, aCtxt); } \
NS_IMETHOD MaybeRetarget(nsIRequest *request) override { return _to MaybeRetarget(request); } \
NS_IMETHOD GetConvertedType(const nsACString& aFromType, nsIChannel *aChannel, nsACString& _retval) override { return _to GetConvertedType(aFromType, aChannel, _retval); }
/* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
#define NS_FORWARD_SAFE_NSISTREAMCONVERTER(_to) \
NS_IMETHOD Convert(nsIInputStream *aFromStream, const char * aFromType, const char * aToType, nsISupports *aCtxt, nsIInputStream **_retval) override { return !_to ? NS_ERROR_NULL_POINTER : _to->Convert(aFromStream, aFromType, aToType, aCtxt, _retval); } \
NS_IMETHOD AsyncConvertData(const char * aFromType, const char * aToType, nsIStreamListener *aListener, nsISupports *aCtxt) override { return !_to ? NS_ERROR_NULL_POINTER : _to->AsyncConvertData(aFromType, aToType, aListener, aCtxt); } \
NS_IMETHOD MaybeRetarget(nsIRequest *request) override { return !_to ? NS_ERROR_NULL_POINTER : _to->MaybeRetarget(request); } \
NS_IMETHOD GetConvertedType(const nsACString& aFromType, nsIChannel *aChannel, nsACString& _retval) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetConvertedType(aFromType, aChannel, _retval); }
#define NS_ISTREAMCONVERTER_KEY "@mozilla.org/streamconv;1"
#endif /* __gen_nsIStreamConverter_h__ */