Your IP : 216.73.216.48
| Current Path : /usr/X11/include/seamonkey/ |
|
|
| Current File : //usr/X11/include/seamonkey/nsIParentRedirectingChannel.h |
/*
* DO NOT EDIT. THIS FILE IS GENERATED FROM ../../../dist/idl/nsIParentRedirectingChannel.idl
*/
#ifndef __gen_nsIParentRedirectingChannel_h__
#define __gen_nsIParentRedirectingChannel_h__
#ifndef __gen_nsIParentChannel_h__
#include "nsIParentChannel.h"
#endif
/* For IDL files that don't want to include root IDL files. */
#ifndef NS_NO_VTABLE
#define NS_NO_VTABLE
#endif
class nsITabParent; /* forward declaration */
class nsIChannel; /* forward declaration */
class nsIAsyncVerifyRedirectCallback; /* forward declaration */
/* starting interface: nsIParentRedirectingChannel */
#define NS_IPARENTREDIRECTINGCHANNEL_IID_STR "3ed1d288-5324-46ee-8a98-33ac37d1080b"
#define NS_IPARENTREDIRECTINGCHANNEL_IID \
{0x3ed1d288, 0x5324, 0x46ee, \
{ 0x8a, 0x98, 0x33, 0xac, 0x37, 0xd1, 0x08, 0x0b }}
class NS_NO_VTABLE nsIParentRedirectingChannel : public nsIParentChannel {
public:
NS_DECLARE_STATIC_IID_ACCESSOR(NS_IPARENTREDIRECTINGCHANNEL_IID)
/* void startRedirect (in uint32_t newChannelId, in nsIChannel newChannel, in uint32_t redirectFlags, in nsIAsyncVerifyRedirectCallback callback); */
NS_IMETHOD StartRedirect(uint32_t newChannelId, nsIChannel *newChannel, uint32_t redirectFlags, nsIAsyncVerifyRedirectCallback *callback) = 0;
/* void completeRedirect (in boolean succeeded); */
NS_IMETHOD CompleteRedirect(bool succeeded) = 0;
};
NS_DEFINE_STATIC_IID_ACCESSOR(nsIParentRedirectingChannel, NS_IPARENTREDIRECTINGCHANNEL_IID)
/* Use this macro when declaring classes that implement this interface. */
#define NS_DECL_NSIPARENTREDIRECTINGCHANNEL \
NS_IMETHOD StartRedirect(uint32_t newChannelId, nsIChannel *newChannel, uint32_t redirectFlags, nsIAsyncVerifyRedirectCallback *callback) override; \
NS_IMETHOD CompleteRedirect(bool succeeded) 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_NSIPARENTREDIRECTINGCHANNEL \
NS_METHOD StartRedirect(uint32_t newChannelId, nsIChannel *newChannel, uint32_t redirectFlags, nsIAsyncVerifyRedirectCallback *callback); \
NS_METHOD CompleteRedirect(bool succeeded);
/* Use this macro to declare functions that forward the behavior of this interface to another object. */
#define NS_FORWARD_NSIPARENTREDIRECTINGCHANNEL(_to) \
NS_IMETHOD StartRedirect(uint32_t newChannelId, nsIChannel *newChannel, uint32_t redirectFlags, nsIAsyncVerifyRedirectCallback *callback) override { return _to StartRedirect(newChannelId, newChannel, redirectFlags, callback); } \
NS_IMETHOD CompleteRedirect(bool succeeded) override { return _to CompleteRedirect(succeeded); }
/* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
#define NS_FORWARD_SAFE_NSIPARENTREDIRECTINGCHANNEL(_to) \
NS_IMETHOD StartRedirect(uint32_t newChannelId, nsIChannel *newChannel, uint32_t redirectFlags, nsIAsyncVerifyRedirectCallback *callback) override { return !_to ? NS_ERROR_NULL_POINTER : _to->StartRedirect(newChannelId, newChannel, redirectFlags, callback); } \
NS_IMETHOD CompleteRedirect(bool succeeded) override { return !_to ? NS_ERROR_NULL_POINTER : _to->CompleteRedirect(succeeded); }
#if 0
/* Use the code below as a template for the implementation class for this interface. */
/* Header file */
class nsParentRedirectingChannel : public nsIParentRedirectingChannel
{
public:
NS_DECL_ISUPPORTS
NS_DECL_NSIPARENTREDIRECTINGCHANNEL
nsParentRedirectingChannel();
private:
~nsParentRedirectingChannel();
protected:
/* additional members */
};
/* Implementation file */
NS_IMPL_ISUPPORTS(nsParentRedirectingChannel, nsIParentRedirectingChannel)
nsParentRedirectingChannel::nsParentRedirectingChannel()
{
/* member initializers and constructor code */
}
nsParentRedirectingChannel::~nsParentRedirectingChannel()
{
/* destructor code */
}
/* void startRedirect (in uint32_t newChannelId, in nsIChannel newChannel, in uint32_t redirectFlags, in nsIAsyncVerifyRedirectCallback callback); */
NS_IMETHODIMP nsParentRedirectingChannel::StartRedirect(uint32_t newChannelId, nsIChannel *newChannel, uint32_t redirectFlags, nsIAsyncVerifyRedirectCallback *callback)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* void completeRedirect (in boolean succeeded); */
NS_IMETHODIMP nsParentRedirectingChannel::CompleteRedirect(bool succeeded)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* End of implementation class template. */
#endif
#endif /* __gen_nsIParentRedirectingChannel_h__ */