/usr/include/thunderbird/nsIHttpAuthenticableChannel.h is in thunderbird-dev 1:38.6.0+build1-0ubuntu1.
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 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 | /*
* DO NOT EDIT. THIS FILE IS GENERATED FROM ../../../dist/idl/nsIHttpAuthenticableChannel.idl
*/
#ifndef __gen_nsIHttpAuthenticableChannel_h__
#define __gen_nsIHttpAuthenticableChannel_h__
#ifndef __gen_nsIProxiedChannel_h__
#include "nsIProxiedChannel.h"
#endif
/* For IDL files that don't want to include root IDL files. */
#ifndef NS_NO_VTABLE
#define NS_NO_VTABLE
#endif
class nsILoadGroup; /* forward declaration */
class nsIURI; /* forward declaration */
class nsIInterfaceRequestor; /* forward declaration */
typedef uint32_t nsLoadFlags;
/* starting interface: nsIHttpAuthenticableChannel */
#define NS_IHTTPAUTHENTICABLECHANNEL_IID_STR "701093ac-5c7f-429c-99e3-423b041fccb4"
#define NS_IHTTPAUTHENTICABLECHANNEL_IID \
{0x701093ac, 0x5c7f, 0x429c, \
{ 0x99, 0xe3, 0x42, 0x3b, 0x04, 0x1f, 0xcc, 0xb4 }}
class NS_NO_VTABLE nsIHttpAuthenticableChannel : public nsIProxiedChannel {
public:
NS_DECLARE_STATIC_IID_ACCESSOR(NS_IHTTPAUTHENTICABLECHANNEL_IID)
/* readonly attribute boolean isSSL; */
NS_IMETHOD GetIsSSL(bool *aIsSSL) = 0;
/* readonly attribute boolean proxyMethodIsConnect; */
NS_IMETHOD GetProxyMethodIsConnect(bool *aProxyMethodIsConnect) = 0;
/* void cancel (in nsresult aStatus); */
NS_IMETHOD Cancel(nsresult aStatus) = 0;
/* readonly attribute nsLoadFlags loadFlags; */
NS_IMETHOD GetLoadFlags(nsLoadFlags *aLoadFlags) = 0;
/* readonly attribute nsIURI URI; */
NS_IMETHOD GetURI(nsIURI * *aURI) = 0;
/* readonly attribute nsILoadGroup loadGroup; */
NS_IMETHOD GetLoadGroup(nsILoadGroup * *aLoadGroup) = 0;
/* readonly attribute nsIInterfaceRequestor notificationCallbacks; */
NS_IMETHOD GetNotificationCallbacks(nsIInterfaceRequestor * *aNotificationCallbacks) = 0;
/* readonly attribute ACString requestMethod; */
NS_IMETHOD GetRequestMethod(nsACString & aRequestMethod) = 0;
/* readonly attribute ACString serverResponseHeader; */
NS_IMETHOD GetServerResponseHeader(nsACString & aServerResponseHeader) = 0;
/* readonly attribute ACString proxyChallenges; */
NS_IMETHOD GetProxyChallenges(nsACString & aProxyChallenges) = 0;
/* readonly attribute ACString WWWChallenges; */
NS_IMETHOD GetWWWChallenges(nsACString & aWWWChallenges) = 0;
/* void setProxyCredentials (in ACString credentials); */
NS_IMETHOD SetProxyCredentials(const nsACString & credentials) = 0;
/* void setWWWCredentials (in ACString credentials); */
NS_IMETHOD SetWWWCredentials(const nsACString & credentials) = 0;
/* void onAuthAvailable (); */
NS_IMETHOD OnAuthAvailable(void) = 0;
/* void onAuthCancelled (in boolean userCancel); */
NS_IMETHOD OnAuthCancelled(bool userCancel) = 0;
};
NS_DEFINE_STATIC_IID_ACCESSOR(nsIHttpAuthenticableChannel, NS_IHTTPAUTHENTICABLECHANNEL_IID)
/* Use this macro when declaring classes that implement this interface. */
#define NS_DECL_NSIHTTPAUTHENTICABLECHANNEL \
NS_IMETHOD GetIsSSL(bool *aIsSSL) override; \
NS_IMETHOD GetProxyMethodIsConnect(bool *aProxyMethodIsConnect) override; \
NS_IMETHOD Cancel(nsresult aStatus) override; \
NS_IMETHOD GetLoadFlags(nsLoadFlags *aLoadFlags) override; \
NS_IMETHOD GetURI(nsIURI * *aURI) override; \
NS_IMETHOD GetLoadGroup(nsILoadGroup * *aLoadGroup) override; \
NS_IMETHOD GetNotificationCallbacks(nsIInterfaceRequestor * *aNotificationCallbacks) override; \
NS_IMETHOD GetRequestMethod(nsACString & aRequestMethod) override; \
NS_IMETHOD GetServerResponseHeader(nsACString & aServerResponseHeader) override; \
NS_IMETHOD GetProxyChallenges(nsACString & aProxyChallenges) override; \
NS_IMETHOD GetWWWChallenges(nsACString & aWWWChallenges) override; \
NS_IMETHOD SetProxyCredentials(const nsACString & credentials) override; \
NS_IMETHOD SetWWWCredentials(const nsACString & credentials) override; \
NS_IMETHOD OnAuthAvailable(void) override; \
NS_IMETHOD OnAuthCancelled(bool userCancel) override;
/* Use this macro to declare functions that forward the behavior of this interface to another object. */
#define NS_FORWARD_NSIHTTPAUTHENTICABLECHANNEL(_to) \
NS_IMETHOD GetIsSSL(bool *aIsSSL) override { return _to GetIsSSL(aIsSSL); } \
NS_IMETHOD GetProxyMethodIsConnect(bool *aProxyMethodIsConnect) override { return _to GetProxyMethodIsConnect(aProxyMethodIsConnect); } \
NS_IMETHOD Cancel(nsresult aStatus) override { return _to Cancel(aStatus); } \
NS_IMETHOD GetLoadFlags(nsLoadFlags *aLoadFlags) override { return _to GetLoadFlags(aLoadFlags); } \
NS_IMETHOD GetURI(nsIURI * *aURI) override { return _to GetURI(aURI); } \
NS_IMETHOD GetLoadGroup(nsILoadGroup * *aLoadGroup) override { return _to GetLoadGroup(aLoadGroup); } \
NS_IMETHOD GetNotificationCallbacks(nsIInterfaceRequestor * *aNotificationCallbacks) override { return _to GetNotificationCallbacks(aNotificationCallbacks); } \
NS_IMETHOD GetRequestMethod(nsACString & aRequestMethod) override { return _to GetRequestMethod(aRequestMethod); } \
NS_IMETHOD GetServerResponseHeader(nsACString & aServerResponseHeader) override { return _to GetServerResponseHeader(aServerResponseHeader); } \
NS_IMETHOD GetProxyChallenges(nsACString & aProxyChallenges) override { return _to GetProxyChallenges(aProxyChallenges); } \
NS_IMETHOD GetWWWChallenges(nsACString & aWWWChallenges) override { return _to GetWWWChallenges(aWWWChallenges); } \
NS_IMETHOD SetProxyCredentials(const nsACString & credentials) override { return _to SetProxyCredentials(credentials); } \
NS_IMETHOD SetWWWCredentials(const nsACString & credentials) override { return _to SetWWWCredentials(credentials); } \
NS_IMETHOD OnAuthAvailable(void) override { return _to OnAuthAvailable(); } \
NS_IMETHOD OnAuthCancelled(bool userCancel) override { return _to OnAuthCancelled(userCancel); }
/* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
#define NS_FORWARD_SAFE_NSIHTTPAUTHENTICABLECHANNEL(_to) \
NS_IMETHOD GetIsSSL(bool *aIsSSL) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetIsSSL(aIsSSL); } \
NS_IMETHOD GetProxyMethodIsConnect(bool *aProxyMethodIsConnect) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetProxyMethodIsConnect(aProxyMethodIsConnect); } \
NS_IMETHOD Cancel(nsresult aStatus) override { return !_to ? NS_ERROR_NULL_POINTER : _to->Cancel(aStatus); } \
NS_IMETHOD GetLoadFlags(nsLoadFlags *aLoadFlags) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetLoadFlags(aLoadFlags); } \
NS_IMETHOD GetURI(nsIURI * *aURI) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetURI(aURI); } \
NS_IMETHOD GetLoadGroup(nsILoadGroup * *aLoadGroup) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetLoadGroup(aLoadGroup); } \
NS_IMETHOD GetNotificationCallbacks(nsIInterfaceRequestor * *aNotificationCallbacks) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetNotificationCallbacks(aNotificationCallbacks); } \
NS_IMETHOD GetRequestMethod(nsACString & aRequestMethod) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetRequestMethod(aRequestMethod); } \
NS_IMETHOD GetServerResponseHeader(nsACString & aServerResponseHeader) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetServerResponseHeader(aServerResponseHeader); } \
NS_IMETHOD GetProxyChallenges(nsACString & aProxyChallenges) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetProxyChallenges(aProxyChallenges); } \
NS_IMETHOD GetWWWChallenges(nsACString & aWWWChallenges) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetWWWChallenges(aWWWChallenges); } \
NS_IMETHOD SetProxyCredentials(const nsACString & credentials) override { return !_to ? NS_ERROR_NULL_POINTER : _to->SetProxyCredentials(credentials); } \
NS_IMETHOD SetWWWCredentials(const nsACString & credentials) override { return !_to ? NS_ERROR_NULL_POINTER : _to->SetWWWCredentials(credentials); } \
NS_IMETHOD OnAuthAvailable(void) override { return !_to ? NS_ERROR_NULL_POINTER : _to->OnAuthAvailable(); } \
NS_IMETHOD OnAuthCancelled(bool userCancel) override { return !_to ? NS_ERROR_NULL_POINTER : _to->OnAuthCancelled(userCancel); }
#if 0
/* Use the code below as a template for the implementation class for this interface. */
/* Header file */
class nsHttpAuthenticableChannel : public nsIHttpAuthenticableChannel
{
public:
NS_DECL_ISUPPORTS
NS_DECL_NSIHTTPAUTHENTICABLECHANNEL
nsHttpAuthenticableChannel();
private:
~nsHttpAuthenticableChannel();
protected:
/* additional members */
};
/* Implementation file */
NS_IMPL_ISUPPORTS(nsHttpAuthenticableChannel, nsIHttpAuthenticableChannel)
nsHttpAuthenticableChannel::nsHttpAuthenticableChannel()
{
/* member initializers and constructor code */
}
nsHttpAuthenticableChannel::~nsHttpAuthenticableChannel()
{
/* destructor code */
}
/* readonly attribute boolean isSSL; */
NS_IMETHODIMP nsHttpAuthenticableChannel::GetIsSSL(bool *aIsSSL)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* readonly attribute boolean proxyMethodIsConnect; */
NS_IMETHODIMP nsHttpAuthenticableChannel::GetProxyMethodIsConnect(bool *aProxyMethodIsConnect)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* void cancel (in nsresult aStatus); */
NS_IMETHODIMP nsHttpAuthenticableChannel::Cancel(nsresult aStatus)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* readonly attribute nsLoadFlags loadFlags; */
NS_IMETHODIMP nsHttpAuthenticableChannel::GetLoadFlags(nsLoadFlags *aLoadFlags)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* readonly attribute nsIURI URI; */
NS_IMETHODIMP nsHttpAuthenticableChannel::GetURI(nsIURI * *aURI)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* readonly attribute nsILoadGroup loadGroup; */
NS_IMETHODIMP nsHttpAuthenticableChannel::GetLoadGroup(nsILoadGroup * *aLoadGroup)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* readonly attribute nsIInterfaceRequestor notificationCallbacks; */
NS_IMETHODIMP nsHttpAuthenticableChannel::GetNotificationCallbacks(nsIInterfaceRequestor * *aNotificationCallbacks)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* readonly attribute ACString requestMethod; */
NS_IMETHODIMP nsHttpAuthenticableChannel::GetRequestMethod(nsACString & aRequestMethod)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* readonly attribute ACString serverResponseHeader; */
NS_IMETHODIMP nsHttpAuthenticableChannel::GetServerResponseHeader(nsACString & aServerResponseHeader)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* readonly attribute ACString proxyChallenges; */
NS_IMETHODIMP nsHttpAuthenticableChannel::GetProxyChallenges(nsACString & aProxyChallenges)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* readonly attribute ACString WWWChallenges; */
NS_IMETHODIMP nsHttpAuthenticableChannel::GetWWWChallenges(nsACString & aWWWChallenges)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* void setProxyCredentials (in ACString credentials); */
NS_IMETHODIMP nsHttpAuthenticableChannel::SetProxyCredentials(const nsACString & credentials)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* void setWWWCredentials (in ACString credentials); */
NS_IMETHODIMP nsHttpAuthenticableChannel::SetWWWCredentials(const nsACString & credentials)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* void onAuthAvailable (); */
NS_IMETHODIMP nsHttpAuthenticableChannel::OnAuthAvailable()
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* void onAuthCancelled (in boolean userCancel); */
NS_IMETHODIMP nsHttpAuthenticableChannel::OnAuthCancelled(bool userCancel)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* End of implementation class template. */
#endif
#endif /* __gen_nsIHttpAuthenticableChannel_h__ */
|