/usr/include/thunderbird/imgIRequest.h is in thunderbird-dev 1:52.8.0-1~deb8u1.
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 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 | /*
* DO NOT EDIT. THIS FILE IS GENERATED FROM ../../../dist/idl/imgIRequest.idl
*/
#ifndef __gen_imgIRequest_h__
#define __gen_imgIRequest_h__
#ifndef __gen_nsISupports_h__
#include "nsISupports.h"
#endif
#ifndef __gen_nsIRequest_h__
#include "nsIRequest.h"
#endif
/* For IDL files that don't want to include root IDL files. */
#ifndef NS_NO_VTABLE
#define NS_NO_VTABLE
#endif
class imgIContainer; /* forward declaration */
class imgINotificationObserver; /* forward declaration */
class nsIURI; /* forward declaration */
class nsIPrincipal; /* forward declaration */
/* starting interface: imgIRequest */
#define IMGIREQUEST_IID_STR "db0a945c-3883-424a-98d0-2ee0523b0255"
#define IMGIREQUEST_IID \
{0xdb0a945c, 0x3883, 0x424a, \
{ 0x98, 0xd0, 0x2e, 0xe0, 0x52, 0x3b, 0x02, 0x55 }}
class NS_NO_VTABLE imgIRequest : public nsIRequest {
public:
NS_DECLARE_STATIC_IID_ACCESSOR(IMGIREQUEST_IID)
/* readonly attribute imgIContainer image; */
NS_IMETHOD GetImage(imgIContainer * *aImage) = 0;
enum {
STATUS_NONE = 0,
STATUS_SIZE_AVAILABLE = 1,
STATUS_LOAD_COMPLETE = 2,
STATUS_ERROR = 4,
STATUS_FRAME_COMPLETE = 8,
STATUS_DECODE_COMPLETE = 16,
STATUS_IS_ANIMATED = 32,
STATUS_HAS_TRANSPARENCY = 64
};
/* readonly attribute unsigned long imageStatus; */
NS_IMETHOD GetImageStatus(uint32_t *aImageStatus) = 0;
/* [noscript] readonly attribute nsresult imageErrorCode; */
NS_IMETHOD GetImageErrorCode(nsresult *aImageErrorCode) = 0;
/* readonly attribute nsIURI URI; */
NS_IMETHOD GetURI(nsIURI * *aURI) = 0;
/* readonly attribute nsIURI currentURI; */
NS_IMETHOD GetCurrentURI(nsIURI * *aCurrentURI) = 0;
/* readonly attribute imgINotificationObserver notificationObserver; */
NS_IMETHOD GetNotificationObserver(imgINotificationObserver * *aNotificationObserver) = 0;
/* readonly attribute string mimeType; */
NS_IMETHOD GetMimeType(char * *aMimeType) = 0;
/* imgIRequest clone (in imgINotificationObserver aObserver); */
NS_IMETHOD Clone(imgINotificationObserver *aObserver, imgIRequest * *_retval) = 0;
/* readonly attribute nsIPrincipal imagePrincipal; */
NS_IMETHOD GetImagePrincipal(nsIPrincipal * *aImagePrincipal) = 0;
/* readonly attribute bool multipart; */
NS_IMETHOD GetMultipart(bool *aMultipart) = 0;
enum {
CORS_NONE = 1,
CORS_ANONYMOUS = 2,
CORS_USE_CREDENTIALS = 3
};
/* readonly attribute long CORSMode; */
NS_IMETHOD GetCORSMode(int32_t *aCORSMode) = 0;
/* void cancelAndForgetObserver (in nsresult aStatus); */
NS_IMETHOD CancelAndForgetObserver(nsresult aStatus) = 0;
/* void startDecoding (); */
NS_IMETHOD StartDecoding(void) = 0;
/* void lockImage (); */
NS_IMETHOD LockImage(void) = 0;
/* void unlockImage (); */
NS_IMETHOD UnlockImage(void) = 0;
/* void requestDiscard (); */
NS_IMETHOD RequestDiscard(void) = 0;
/* imgIRequest getStaticRequest (); */
NS_IMETHOD GetStaticRequest(imgIRequest * *_retval) = 0;
/* void incrementAnimationConsumers (); */
NS_IMETHOD IncrementAnimationConsumers(void) = 0;
/* void decrementAnimationConsumers (); */
NS_IMETHOD DecrementAnimationConsumers(void) = 0;
};
NS_DEFINE_STATIC_IID_ACCESSOR(imgIRequest, IMGIREQUEST_IID)
/* Use this macro when declaring classes that implement this interface. */
#define NS_DECL_IMGIREQUEST \
NS_IMETHOD GetImage(imgIContainer * *aImage) override; \
NS_IMETHOD GetImageStatus(uint32_t *aImageStatus) override; \
NS_IMETHOD GetImageErrorCode(nsresult *aImageErrorCode) override; \
NS_IMETHOD GetURI(nsIURI * *aURI) override; \
NS_IMETHOD GetCurrentURI(nsIURI * *aCurrentURI) override; \
NS_IMETHOD GetNotificationObserver(imgINotificationObserver * *aNotificationObserver) override; \
NS_IMETHOD GetMimeType(char * *aMimeType) override; \
NS_IMETHOD Clone(imgINotificationObserver *aObserver, imgIRequest * *_retval) override; \
NS_IMETHOD GetImagePrincipal(nsIPrincipal * *aImagePrincipal) override; \
NS_IMETHOD GetMultipart(bool *aMultipart) override; \
NS_IMETHOD GetCORSMode(int32_t *aCORSMode) override; \
NS_IMETHOD CancelAndForgetObserver(nsresult aStatus) override; \
NS_IMETHOD StartDecoding(void) override; \
NS_IMETHOD LockImage(void) override; \
NS_IMETHOD UnlockImage(void) override; \
NS_IMETHOD RequestDiscard(void) override; \
NS_IMETHOD GetStaticRequest(imgIRequest * *_retval) override; \
NS_IMETHOD IncrementAnimationConsumers(void) override; \
NS_IMETHOD DecrementAnimationConsumers(void) 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_IMGIREQUEST \
NS_METHOD GetImage(imgIContainer * *aImage); \
NS_METHOD GetImageStatus(uint32_t *aImageStatus); \
NS_METHOD GetImageErrorCode(nsresult *aImageErrorCode); \
NS_METHOD GetURI(nsIURI * *aURI); \
NS_METHOD GetCurrentURI(nsIURI * *aCurrentURI); \
NS_METHOD GetNotificationObserver(imgINotificationObserver * *aNotificationObserver); \
NS_METHOD GetMimeType(char * *aMimeType); \
NS_METHOD Clone(imgINotificationObserver *aObserver, imgIRequest * *_retval); \
NS_METHOD GetImagePrincipal(nsIPrincipal * *aImagePrincipal); \
NS_METHOD GetMultipart(bool *aMultipart); \
NS_METHOD GetCORSMode(int32_t *aCORSMode); \
NS_METHOD CancelAndForgetObserver(nsresult aStatus); \
NS_METHOD StartDecoding(void); \
NS_METHOD LockImage(void); \
NS_METHOD UnlockImage(void); \
NS_METHOD RequestDiscard(void); \
NS_METHOD GetStaticRequest(imgIRequest * *_retval); \
NS_METHOD IncrementAnimationConsumers(void); \
NS_METHOD DecrementAnimationConsumers(void);
/* Use this macro to declare functions that forward the behavior of this interface to another object. */
#define NS_FORWARD_IMGIREQUEST(_to) \
NS_IMETHOD GetImage(imgIContainer * *aImage) override { return _to GetImage(aImage); } \
NS_IMETHOD GetImageStatus(uint32_t *aImageStatus) override { return _to GetImageStatus(aImageStatus); } \
NS_IMETHOD GetImageErrorCode(nsresult *aImageErrorCode) override { return _to GetImageErrorCode(aImageErrorCode); } \
NS_IMETHOD GetURI(nsIURI * *aURI) override { return _to GetURI(aURI); } \
NS_IMETHOD GetCurrentURI(nsIURI * *aCurrentURI) override { return _to GetCurrentURI(aCurrentURI); } \
NS_IMETHOD GetNotificationObserver(imgINotificationObserver * *aNotificationObserver) override { return _to GetNotificationObserver(aNotificationObserver); } \
NS_IMETHOD GetMimeType(char * *aMimeType) override { return _to GetMimeType(aMimeType); } \
NS_IMETHOD Clone(imgINotificationObserver *aObserver, imgIRequest * *_retval) override { return _to Clone(aObserver, _retval); } \
NS_IMETHOD GetImagePrincipal(nsIPrincipal * *aImagePrincipal) override { return _to GetImagePrincipal(aImagePrincipal); } \
NS_IMETHOD GetMultipart(bool *aMultipart) override { return _to GetMultipart(aMultipart); } \
NS_IMETHOD GetCORSMode(int32_t *aCORSMode) override { return _to GetCORSMode(aCORSMode); } \
NS_IMETHOD CancelAndForgetObserver(nsresult aStatus) override { return _to CancelAndForgetObserver(aStatus); } \
NS_IMETHOD StartDecoding(void) override { return _to StartDecoding(); } \
NS_IMETHOD LockImage(void) override { return _to LockImage(); } \
NS_IMETHOD UnlockImage(void) override { return _to UnlockImage(); } \
NS_IMETHOD RequestDiscard(void) override { return _to RequestDiscard(); } \
NS_IMETHOD GetStaticRequest(imgIRequest * *_retval) override { return _to GetStaticRequest(_retval); } \
NS_IMETHOD IncrementAnimationConsumers(void) override { return _to IncrementAnimationConsumers(); } \
NS_IMETHOD DecrementAnimationConsumers(void) override { return _to DecrementAnimationConsumers(); }
/* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
#define NS_FORWARD_SAFE_IMGIREQUEST(_to) \
NS_IMETHOD GetImage(imgIContainer * *aImage) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetImage(aImage); } \
NS_IMETHOD GetImageStatus(uint32_t *aImageStatus) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetImageStatus(aImageStatus); } \
NS_IMETHOD GetImageErrorCode(nsresult *aImageErrorCode) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetImageErrorCode(aImageErrorCode); } \
NS_IMETHOD GetURI(nsIURI * *aURI) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetURI(aURI); } \
NS_IMETHOD GetCurrentURI(nsIURI * *aCurrentURI) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetCurrentURI(aCurrentURI); } \
NS_IMETHOD GetNotificationObserver(imgINotificationObserver * *aNotificationObserver) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetNotificationObserver(aNotificationObserver); } \
NS_IMETHOD GetMimeType(char * *aMimeType) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetMimeType(aMimeType); } \
NS_IMETHOD Clone(imgINotificationObserver *aObserver, imgIRequest * *_retval) override { return !_to ? NS_ERROR_NULL_POINTER : _to->Clone(aObserver, _retval); } \
NS_IMETHOD GetImagePrincipal(nsIPrincipal * *aImagePrincipal) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetImagePrincipal(aImagePrincipal); } \
NS_IMETHOD GetMultipart(bool *aMultipart) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetMultipart(aMultipart); } \
NS_IMETHOD GetCORSMode(int32_t *aCORSMode) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetCORSMode(aCORSMode); } \
NS_IMETHOD CancelAndForgetObserver(nsresult aStatus) override { return !_to ? NS_ERROR_NULL_POINTER : _to->CancelAndForgetObserver(aStatus); } \
NS_IMETHOD StartDecoding(void) override { return !_to ? NS_ERROR_NULL_POINTER : _to->StartDecoding(); } \
NS_IMETHOD LockImage(void) override { return !_to ? NS_ERROR_NULL_POINTER : _to->LockImage(); } \
NS_IMETHOD UnlockImage(void) override { return !_to ? NS_ERROR_NULL_POINTER : _to->UnlockImage(); } \
NS_IMETHOD RequestDiscard(void) override { return !_to ? NS_ERROR_NULL_POINTER : _to->RequestDiscard(); } \
NS_IMETHOD GetStaticRequest(imgIRequest * *_retval) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetStaticRequest(_retval); } \
NS_IMETHOD IncrementAnimationConsumers(void) override { return !_to ? NS_ERROR_NULL_POINTER : _to->IncrementAnimationConsumers(); } \
NS_IMETHOD DecrementAnimationConsumers(void) override { return !_to ? NS_ERROR_NULL_POINTER : _to->DecrementAnimationConsumers(); }
#if 0
/* Use the code below as a template for the implementation class for this interface. */
/* Header file */
class _MYCLASS_ : public imgIRequest
{
public:
NS_DECL_ISUPPORTS
NS_DECL_IMGIREQUEST
_MYCLASS_();
private:
~_MYCLASS_();
protected:
/* additional members */
};
/* Implementation file */
NS_IMPL_ISUPPORTS(_MYCLASS_, imgIRequest)
_MYCLASS_::_MYCLASS_()
{
/* member initializers and constructor code */
}
_MYCLASS_::~_MYCLASS_()
{
/* destructor code */
}
/* readonly attribute imgIContainer image; */
NS_IMETHODIMP _MYCLASS_::GetImage(imgIContainer * *aImage)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* readonly attribute unsigned long imageStatus; */
NS_IMETHODIMP _MYCLASS_::GetImageStatus(uint32_t *aImageStatus)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* [noscript] readonly attribute nsresult imageErrorCode; */
NS_IMETHODIMP _MYCLASS_::GetImageErrorCode(nsresult *aImageErrorCode)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* readonly attribute nsIURI URI; */
NS_IMETHODIMP _MYCLASS_::GetURI(nsIURI * *aURI)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* readonly attribute nsIURI currentURI; */
NS_IMETHODIMP _MYCLASS_::GetCurrentURI(nsIURI * *aCurrentURI)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* readonly attribute imgINotificationObserver notificationObserver; */
NS_IMETHODIMP _MYCLASS_::GetNotificationObserver(imgINotificationObserver * *aNotificationObserver)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* readonly attribute string mimeType; */
NS_IMETHODIMP _MYCLASS_::GetMimeType(char * *aMimeType)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* imgIRequest clone (in imgINotificationObserver aObserver); */
NS_IMETHODIMP _MYCLASS_::Clone(imgINotificationObserver *aObserver, imgIRequest * *_retval)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* readonly attribute nsIPrincipal imagePrincipal; */
NS_IMETHODIMP _MYCLASS_::GetImagePrincipal(nsIPrincipal * *aImagePrincipal)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* readonly attribute bool multipart; */
NS_IMETHODIMP _MYCLASS_::GetMultipart(bool *aMultipart)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* readonly attribute long CORSMode; */
NS_IMETHODIMP _MYCLASS_::GetCORSMode(int32_t *aCORSMode)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* void cancelAndForgetObserver (in nsresult aStatus); */
NS_IMETHODIMP _MYCLASS_::CancelAndForgetObserver(nsresult aStatus)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* void startDecoding (); */
NS_IMETHODIMP _MYCLASS_::StartDecoding()
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* void lockImage (); */
NS_IMETHODIMP _MYCLASS_::LockImage()
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* void unlockImage (); */
NS_IMETHODIMP _MYCLASS_::UnlockImage()
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* void requestDiscard (); */
NS_IMETHODIMP _MYCLASS_::RequestDiscard()
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* imgIRequest getStaticRequest (); */
NS_IMETHODIMP _MYCLASS_::GetStaticRequest(imgIRequest * *_retval)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* void incrementAnimationConsumers (); */
NS_IMETHODIMP _MYCLASS_::IncrementAnimationConsumers()
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* void decrementAnimationConsumers (); */
NS_IMETHODIMP _MYCLASS_::DecrementAnimationConsumers()
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* End of implementation class template. */
#endif
#endif /* __gen_imgIRequest_h__ */
|