Copy as Markdown
Other Tools
/*
* DO NOT EDIT. THIS FILE IS GENERATED FROM $SRCDIR/widget/android/tests/nsIOhttpClientTest.idl
*/
#ifndef __gen_nsIOhttpClientTest_h__
#define __gen_nsIOhttpClientTest_h__
#include "nsISupports.h"
#include "nsTArray.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: ohttpClientTestCallback */
#define OHTTPCLIENTTESTCALLBACK_IID_STR "cdec8db3-3868-41e7-a91a-68a3b5a24de0"
#define OHTTPCLIENTTESTCALLBACK_IID \
{0xcdec8db3, 0x3868, 0x41e7, \
{ 0xa9, 0x1a, 0x68, 0xa3, 0xb5, 0xa2, 0x4d, 0xe0 }}
class NS_NO_VTABLE ohttpClientTestCallback : public nsISupports {
public:
NS_DECLARE_STATIC_IID_ACCESSOR(OHTTPCLIENTTESTCALLBACK_IID)
/* Used by ToJSValue to check which scriptable interface is implemented. */
using ScriptableInterfaceType = ohttpClientTestCallback;
/* void onResponse (in ACString url, in long statusCode, in Array<ACString> headerKeys, in Array<ACString> headerValues, in ACString errorMessage); */
JS_HAZ_CAN_RUN_SCRIPT NS_IMETHOD OnResponse(const nsACString& url, int32_t statusCode, const nsTArray<nsCString >& headerKeys, const nsTArray<nsCString >& headerValues, const nsACString& errorMessage) = 0;
};
NS_DEFINE_STATIC_IID_ACCESSOR(ohttpClientTestCallback, OHTTPCLIENTTESTCALLBACK_IID)
/* Use this macro when declaring classes that implement this interface. */
#define NS_DECL_OHTTPCLIENTTESTCALLBACK \
NS_IMETHOD OnResponse(const nsACString& url, int32_t statusCode, const nsTArray<nsCString >& headerKeys, const nsTArray<nsCString >& headerValues, const nsACString& errorMessage) 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_OHTTPCLIENTTESTCALLBACK \
nsresult OnResponse(const nsACString& url, int32_t statusCode, const nsTArray<nsCString >& headerKeys, const nsTArray<nsCString >& headerValues, const nsACString& errorMessage);
/* Use this macro to declare functions that forward the behavior of this interface to another object. */
#define NS_FORWARD_OHTTPCLIENTTESTCALLBACK(_to) \
NS_IMETHOD OnResponse(const nsACString& url, int32_t statusCode, const nsTArray<nsCString >& headerKeys, const nsTArray<nsCString >& headerValues, const nsACString& errorMessage) override { return _to OnResponse(url, statusCode, headerKeys, headerValues, errorMessage); }
/* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
#define NS_FORWARD_SAFE_OHTTPCLIENTTESTCALLBACK(_to) \
NS_IMETHOD OnResponse(const nsACString& url, int32_t statusCode, const nsTArray<nsCString >& headerKeys, const nsTArray<nsCString >& headerValues, const nsACString& errorMessage) override { return !_to ? NS_ERROR_NULL_POINTER : _to->OnResponse(url, statusCode, headerKeys, headerValues, errorMessage); }
/* starting interface: nsIOhttpClientTest */
#define NS_IOHTTPCLIENTTEST_IID_STR "b3150bd2-689c-4cf0-b4ee-4f90aaf1cbd3"
#define NS_IOHTTPCLIENTTEST_IID \
{0xb3150bd2, 0x689c, 0x4cf0, \
{ 0xb4, 0xee, 0x4f, 0x90, 0xaa, 0xf1, 0xcb, 0xd3 }}
class NS_NO_VTABLE nsIOhttpClientTest : public nsISupports {
public:
NS_DECLARE_STATIC_IID_ACCESSOR(NS_IOHTTPCLIENTTEST_IID)
/* Used by ToJSValue to check which scriptable interface is implemented. */
using ScriptableInterfaceType = nsIOhttpClientTest;
/* void fetch (in ACString url, in ACString method, in ACString body, in Array<ACString> headerKeys, in Array<ACString> headerValues, in ohttpClientTestCallback callback); */
JS_HAZ_CAN_RUN_SCRIPT NS_IMETHOD Fetch(const nsACString& url, const nsACString& method, const nsACString& body, const nsTArray<nsCString >& headerKeys, const nsTArray<nsCString >& headerValues, ohttpClientTestCallback *callback) = 0;
};
NS_DEFINE_STATIC_IID_ACCESSOR(nsIOhttpClientTest, NS_IOHTTPCLIENTTEST_IID)
/* Use this macro when declaring classes that implement this interface. */
#define NS_DECL_NSIOHTTPCLIENTTEST \
NS_IMETHOD Fetch(const nsACString& url, const nsACString& method, const nsACString& body, const nsTArray<nsCString >& headerKeys, const nsTArray<nsCString >& headerValues, ohttpClientTestCallback *callback) 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_NSIOHTTPCLIENTTEST \
nsresult Fetch(const nsACString& url, const nsACString& method, const nsACString& body, const nsTArray<nsCString >& headerKeys, const nsTArray<nsCString >& headerValues, ohttpClientTestCallback *callback);
/* Use this macro to declare functions that forward the behavior of this interface to another object. */
#define NS_FORWARD_NSIOHTTPCLIENTTEST(_to) \
NS_IMETHOD Fetch(const nsACString& url, const nsACString& method, const nsACString& body, const nsTArray<nsCString >& headerKeys, const nsTArray<nsCString >& headerValues, ohttpClientTestCallback *callback) override { return _to Fetch(url, method, body, headerKeys, headerValues, callback); }
/* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
#define NS_FORWARD_SAFE_NSIOHTTPCLIENTTEST(_to) \
NS_IMETHOD Fetch(const nsACString& url, const nsACString& method, const nsACString& body, const nsTArray<nsCString >& headerKeys, const nsTArray<nsCString >& headerValues, ohttpClientTestCallback *callback) override { return !_to ? NS_ERROR_NULL_POINTER : _to->Fetch(url, method, body, headerKeys, headerValues, callback); }
#endif /* __gen_nsIOhttpClientTest_h__ */