/usr/include/thunderbird-11.0.1/nsIHttpChannelAuthProvider.h is in thunderbird-dev 11.0.1+build1-0ubuntu2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 | /*
* DO NOT EDIT. THIS FILE IS GENERATED FROM /build/buildd/thunderbird-11.0.1+build1/build-tree/mozilla/mozilla/netwerk/protocol/http/nsIHttpChannelAuthProvider.idl
*/
#ifndef __gen_nsIHttpChannelAuthProvider_h__
#define __gen_nsIHttpChannelAuthProvider_h__
#ifndef __gen_nsICancelable_h__
#include "nsICancelable.h"
#endif
/* 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 */
class nsIHttpAuthenticableChannel; /* forward declaration */
/* starting interface: nsIHttpChannelAuthProvider */
#define NS_IHTTPCHANNELAUTHPROVIDER_IID_STR "c68f3def-c7c8-4ee8-861c-eef49a48b702"
#define NS_IHTTPCHANNELAUTHPROVIDER_IID \
{0xc68f3def, 0xc7c8, 0x4ee8, \
{ 0x86, 0x1c, 0xee, 0xf4, 0x9a, 0x48, 0xb7, 0x02 }}
class NS_NO_VTABLE NS_SCRIPTABLE nsIHttpChannelAuthProvider : public nsICancelable {
public:
NS_DECLARE_STATIC_IID_ACCESSOR(NS_IHTTPCHANNELAUTHPROVIDER_IID)
/* void init (in nsIHttpAuthenticableChannel channel); */
NS_SCRIPTABLE NS_IMETHOD Init(nsIHttpAuthenticableChannel *channel) = 0;
/* void processAuthentication (in unsigned long httpStatus, in boolean sslConnectFailed); */
NS_SCRIPTABLE NS_IMETHOD ProcessAuthentication(PRUint32 httpStatus, bool sslConnectFailed) = 0;
/* void addAuthorizationHeaders (); */
NS_SCRIPTABLE NS_IMETHOD AddAuthorizationHeaders(void) = 0;
/* void checkForSuperfluousAuth (); */
NS_SCRIPTABLE NS_IMETHOD CheckForSuperfluousAuth(void) = 0;
/* void disconnect (in nsresult status); */
NS_SCRIPTABLE NS_IMETHOD Disconnect(nsresult status) = 0;
};
NS_DEFINE_STATIC_IID_ACCESSOR(nsIHttpChannelAuthProvider, NS_IHTTPCHANNELAUTHPROVIDER_IID)
/* Use this macro when declaring classes that implement this interface. */
#define NS_DECL_NSIHTTPCHANNELAUTHPROVIDER \
NS_SCRIPTABLE NS_IMETHOD Init(nsIHttpAuthenticableChannel *channel); \
NS_SCRIPTABLE NS_IMETHOD ProcessAuthentication(PRUint32 httpStatus, bool sslConnectFailed); \
NS_SCRIPTABLE NS_IMETHOD AddAuthorizationHeaders(void); \
NS_SCRIPTABLE NS_IMETHOD CheckForSuperfluousAuth(void); \
NS_SCRIPTABLE NS_IMETHOD Disconnect(nsresult status);
/* Use this macro to declare functions that forward the behavior of this interface to another object. */
#define NS_FORWARD_NSIHTTPCHANNELAUTHPROVIDER(_to) \
NS_SCRIPTABLE NS_IMETHOD Init(nsIHttpAuthenticableChannel *channel) { return _to Init(channel); } \
NS_SCRIPTABLE NS_IMETHOD ProcessAuthentication(PRUint32 httpStatus, bool sslConnectFailed) { return _to ProcessAuthentication(httpStatus, sslConnectFailed); } \
NS_SCRIPTABLE NS_IMETHOD AddAuthorizationHeaders(void) { return _to AddAuthorizationHeaders(); } \
NS_SCRIPTABLE NS_IMETHOD CheckForSuperfluousAuth(void) { return _to CheckForSuperfluousAuth(); } \
NS_SCRIPTABLE NS_IMETHOD Disconnect(nsresult status) { return _to Disconnect(status); }
/* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
#define NS_FORWARD_SAFE_NSIHTTPCHANNELAUTHPROVIDER(_to) \
NS_SCRIPTABLE NS_IMETHOD Init(nsIHttpAuthenticableChannel *channel) { return !_to ? NS_ERROR_NULL_POINTER : _to->Init(channel); } \
NS_SCRIPTABLE NS_IMETHOD ProcessAuthentication(PRUint32 httpStatus, bool sslConnectFailed) { return !_to ? NS_ERROR_NULL_POINTER : _to->ProcessAuthentication(httpStatus, sslConnectFailed); } \
NS_SCRIPTABLE NS_IMETHOD AddAuthorizationHeaders(void) { return !_to ? NS_ERROR_NULL_POINTER : _to->AddAuthorizationHeaders(); } \
NS_SCRIPTABLE NS_IMETHOD CheckForSuperfluousAuth(void) { return !_to ? NS_ERROR_NULL_POINTER : _to->CheckForSuperfluousAuth(); } \
NS_SCRIPTABLE NS_IMETHOD Disconnect(nsresult status) { return !_to ? NS_ERROR_NULL_POINTER : _to->Disconnect(status); }
#if 0
/* Use the code below as a template for the implementation class for this interface. */
/* Header file */
class nsHttpChannelAuthProvider : public nsIHttpChannelAuthProvider
{
public:
NS_DECL_ISUPPORTS
NS_DECL_NSIHTTPCHANNELAUTHPROVIDER
nsHttpChannelAuthProvider();
private:
~nsHttpChannelAuthProvider();
protected:
/* additional members */
};
/* Implementation file */
NS_IMPL_ISUPPORTS1(nsHttpChannelAuthProvider, nsIHttpChannelAuthProvider)
nsHttpChannelAuthProvider::nsHttpChannelAuthProvider()
{
/* member initializers and constructor code */
}
nsHttpChannelAuthProvider::~nsHttpChannelAuthProvider()
{
/* destructor code */
}
/* void init (in nsIHttpAuthenticableChannel channel); */
NS_IMETHODIMP nsHttpChannelAuthProvider::Init(nsIHttpAuthenticableChannel *channel)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* void processAuthentication (in unsigned long httpStatus, in boolean sslConnectFailed); */
NS_IMETHODIMP nsHttpChannelAuthProvider::ProcessAuthentication(PRUint32 httpStatus, bool sslConnectFailed)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* void addAuthorizationHeaders (); */
NS_IMETHODIMP nsHttpChannelAuthProvider::AddAuthorizationHeaders()
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* void checkForSuperfluousAuth (); */
NS_IMETHODIMP nsHttpChannelAuthProvider::CheckForSuperfluousAuth()
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* void disconnect (in nsresult status); */
NS_IMETHODIMP nsHttpChannelAuthProvider::Disconnect(nsresult status)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* End of implementation class template. */
#endif
#endif /* __gen_nsIHttpChannelAuthProvider_h__ */
|