This file is indexed.

/usr/include/thunderbird/imgITools.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
/*
 * DO NOT EDIT.  THIS FILE IS GENERATED FROM ../../../dist/idl/imgITools.idl
 */

#ifndef __gen_imgITools_h__
#define __gen_imgITools_h__


#ifndef __gen_nsISupports_h__
#include "nsISupports.h"
#endif

/* For IDL files that don't want to include root IDL files. */
#ifndef NS_NO_VTABLE
#define NS_NO_VTABLE
#endif
class nsIInputStream; /* forward declaration */

class imgIContainer; /* forward declaration */

class imgILoader; /* forward declaration */

class imgICache; /* forward declaration */

class nsIDOMDocument; /* forward declaration */

class imgIScriptedNotificationObserver; /* forward declaration */

class imgINotificationObserver; /* forward declaration */


/* starting interface:    imgITools */
#define IMGITOOLS_IID_STR "4c2383a4-931c-484d-8c4a-973590f66e3f"

#define IMGITOOLS_IID \
  {0x4c2383a4, 0x931c, 0x484d, \
    { 0x8c, 0x4a, 0x97, 0x35, 0x90, 0xf6, 0x6e, 0x3f }}

class NS_NO_VTABLE imgITools : public nsISupports {
 public:

  NS_DECLARE_STATIC_IID_ACCESSOR(IMGITOOLS_IID)

  /* imgIContainer decodeImage (in nsIInputStream aStream, in ACString aMimeType); */
  NS_IMETHOD DecodeImage(nsIInputStream *aStream, const nsACString & aMimeType, imgIContainer * *_retval) = 0;

  /* [deprecated] void decodeImageData (in nsIInputStream aStream, in ACString aMimeType, inout imgIContainer aContainer); */
  NS_IMETHOD DecodeImageData(nsIInputStream *aStream, const nsACString & aMimeType, imgIContainer * *aContainer) = 0;

  /* nsIInputStream encodeImage (in imgIContainer aContainer, in ACString aMimeType, [optional] in AString outputOptions); */
  NS_IMETHOD EncodeImage(imgIContainer *aContainer, const nsACString & aMimeType, const nsAString & outputOptions, nsIInputStream * *_retval) = 0;

  /* nsIInputStream encodeScaledImage (in imgIContainer aContainer, in ACString aMimeType, in long aWidth, in long aHeight, [optional] in AString outputOptions); */
  NS_IMETHOD EncodeScaledImage(imgIContainer *aContainer, const nsACString & aMimeType, int32_t aWidth, int32_t aHeight, const nsAString & outputOptions, nsIInputStream * *_retval) = 0;

  /* imgILoader getImgLoaderForDocument (in nsIDOMDocument doc); */
  NS_IMETHOD GetImgLoaderForDocument(nsIDOMDocument *doc, imgILoader * *_retval) = 0;

  /* imgICache getImgCacheForDocument (in nsIDOMDocument doc); */
  NS_IMETHOD GetImgCacheForDocument(nsIDOMDocument *doc, imgICache * *_retval) = 0;

  /* nsIInputStream encodeCroppedImage (in imgIContainer aContainer, in ACString aMimeType, in long aOffsetX, in long aOffsetY, in long aWidth, in long aHeight, [optional] in AString outputOptions); */
  NS_IMETHOD EncodeCroppedImage(imgIContainer *aContainer, const nsACString & aMimeType, int32_t aOffsetX, int32_t aOffsetY, int32_t aWidth, int32_t aHeight, const nsAString & outputOptions, nsIInputStream * *_retval) = 0;

  /* imgINotificationObserver createScriptedObserver (in imgIScriptedNotificationObserver aObserver); */
  NS_IMETHOD CreateScriptedObserver(imgIScriptedNotificationObserver *aObserver, imgINotificationObserver * *_retval) = 0;

};

  NS_DEFINE_STATIC_IID_ACCESSOR(imgITools, IMGITOOLS_IID)

/* Use this macro when declaring classes that implement this interface. */
#define NS_DECL_IMGITOOLS \
  NS_IMETHOD DecodeImage(nsIInputStream *aStream, const nsACString & aMimeType, imgIContainer * *_retval) override; \
  NS_IMETHOD DecodeImageData(nsIInputStream *aStream, const nsACString & aMimeType, imgIContainer * *aContainer) override; \
  NS_IMETHOD EncodeImage(imgIContainer *aContainer, const nsACString & aMimeType, const nsAString & outputOptions, nsIInputStream * *_retval) override; \
  NS_IMETHOD EncodeScaledImage(imgIContainer *aContainer, const nsACString & aMimeType, int32_t aWidth, int32_t aHeight, const nsAString & outputOptions, nsIInputStream * *_retval) override; \
  NS_IMETHOD GetImgLoaderForDocument(nsIDOMDocument *doc, imgILoader * *_retval) override; \
  NS_IMETHOD GetImgCacheForDocument(nsIDOMDocument *doc, imgICache * *_retval) override; \
  NS_IMETHOD EncodeCroppedImage(imgIContainer *aContainer, const nsACString & aMimeType, int32_t aOffsetX, int32_t aOffsetY, int32_t aWidth, int32_t aHeight, const nsAString & outputOptions, nsIInputStream * *_retval) override; \
  NS_IMETHOD CreateScriptedObserver(imgIScriptedNotificationObserver *aObserver, imgINotificationObserver * *_retval) 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_IMGITOOLS \
  NS_METHOD DecodeImage(nsIInputStream *aStream, const nsACString & aMimeType, imgIContainer * *_retval); \
  NS_METHOD DecodeImageData(nsIInputStream *aStream, const nsACString & aMimeType, imgIContainer * *aContainer); \
  NS_METHOD EncodeImage(imgIContainer *aContainer, const nsACString & aMimeType, const nsAString & outputOptions, nsIInputStream * *_retval); \
  NS_METHOD EncodeScaledImage(imgIContainer *aContainer, const nsACString & aMimeType, int32_t aWidth, int32_t aHeight, const nsAString & outputOptions, nsIInputStream * *_retval); \
  NS_METHOD GetImgLoaderForDocument(nsIDOMDocument *doc, imgILoader * *_retval); \
  NS_METHOD GetImgCacheForDocument(nsIDOMDocument *doc, imgICache * *_retval); \
  NS_METHOD EncodeCroppedImage(imgIContainer *aContainer, const nsACString & aMimeType, int32_t aOffsetX, int32_t aOffsetY, int32_t aWidth, int32_t aHeight, const nsAString & outputOptions, nsIInputStream * *_retval); \
  NS_METHOD CreateScriptedObserver(imgIScriptedNotificationObserver *aObserver, imgINotificationObserver * *_retval); 

/* Use this macro to declare functions that forward the behavior of this interface to another object. */
#define NS_FORWARD_IMGITOOLS(_to) \
  NS_IMETHOD DecodeImage(nsIInputStream *aStream, const nsACString & aMimeType, imgIContainer * *_retval) override { return _to DecodeImage(aStream, aMimeType, _retval); } \
  NS_IMETHOD DecodeImageData(nsIInputStream *aStream, const nsACString & aMimeType, imgIContainer * *aContainer) override { return _to DecodeImageData(aStream, aMimeType, aContainer); } \
  NS_IMETHOD EncodeImage(imgIContainer *aContainer, const nsACString & aMimeType, const nsAString & outputOptions, nsIInputStream * *_retval) override { return _to EncodeImage(aContainer, aMimeType, outputOptions, _retval); } \
  NS_IMETHOD EncodeScaledImage(imgIContainer *aContainer, const nsACString & aMimeType, int32_t aWidth, int32_t aHeight, const nsAString & outputOptions, nsIInputStream * *_retval) override { return _to EncodeScaledImage(aContainer, aMimeType, aWidth, aHeight, outputOptions, _retval); } \
  NS_IMETHOD GetImgLoaderForDocument(nsIDOMDocument *doc, imgILoader * *_retval) override { return _to GetImgLoaderForDocument(doc, _retval); } \
  NS_IMETHOD GetImgCacheForDocument(nsIDOMDocument *doc, imgICache * *_retval) override { return _to GetImgCacheForDocument(doc, _retval); } \
  NS_IMETHOD EncodeCroppedImage(imgIContainer *aContainer, const nsACString & aMimeType, int32_t aOffsetX, int32_t aOffsetY, int32_t aWidth, int32_t aHeight, const nsAString & outputOptions, nsIInputStream * *_retval) override { return _to EncodeCroppedImage(aContainer, aMimeType, aOffsetX, aOffsetY, aWidth, aHeight, outputOptions, _retval); } \
  NS_IMETHOD CreateScriptedObserver(imgIScriptedNotificationObserver *aObserver, imgINotificationObserver * *_retval) override { return _to CreateScriptedObserver(aObserver, _retval); } 

/* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
#define NS_FORWARD_SAFE_IMGITOOLS(_to) \
  NS_IMETHOD DecodeImage(nsIInputStream *aStream, const nsACString & aMimeType, imgIContainer * *_retval) override { return !_to ? NS_ERROR_NULL_POINTER : _to->DecodeImage(aStream, aMimeType, _retval); } \
  NS_IMETHOD DecodeImageData(nsIInputStream *aStream, const nsACString & aMimeType, imgIContainer * *aContainer) override { return !_to ? NS_ERROR_NULL_POINTER : _to->DecodeImageData(aStream, aMimeType, aContainer); } \
  NS_IMETHOD EncodeImage(imgIContainer *aContainer, const nsACString & aMimeType, const nsAString & outputOptions, nsIInputStream * *_retval) override { return !_to ? NS_ERROR_NULL_POINTER : _to->EncodeImage(aContainer, aMimeType, outputOptions, _retval); } \
  NS_IMETHOD EncodeScaledImage(imgIContainer *aContainer, const nsACString & aMimeType, int32_t aWidth, int32_t aHeight, const nsAString & outputOptions, nsIInputStream * *_retval) override { return !_to ? NS_ERROR_NULL_POINTER : _to->EncodeScaledImage(aContainer, aMimeType, aWidth, aHeight, outputOptions, _retval); } \
  NS_IMETHOD GetImgLoaderForDocument(nsIDOMDocument *doc, imgILoader * *_retval) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetImgLoaderForDocument(doc, _retval); } \
  NS_IMETHOD GetImgCacheForDocument(nsIDOMDocument *doc, imgICache * *_retval) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetImgCacheForDocument(doc, _retval); } \
  NS_IMETHOD EncodeCroppedImage(imgIContainer *aContainer, const nsACString & aMimeType, int32_t aOffsetX, int32_t aOffsetY, int32_t aWidth, int32_t aHeight, const nsAString & outputOptions, nsIInputStream * *_retval) override { return !_to ? NS_ERROR_NULL_POINTER : _to->EncodeCroppedImage(aContainer, aMimeType, aOffsetX, aOffsetY, aWidth, aHeight, outputOptions, _retval); } \
  NS_IMETHOD CreateScriptedObserver(imgIScriptedNotificationObserver *aObserver, imgINotificationObserver * *_retval) override { return !_to ? NS_ERROR_NULL_POINTER : _to->CreateScriptedObserver(aObserver, _retval); } 

#if 0
/* Use the code below as a template for the implementation class for this interface. */

/* Header file */
class _MYCLASS_ : public imgITools
{
public:
  NS_DECL_ISUPPORTS
  NS_DECL_IMGITOOLS

  _MYCLASS_();

private:
  ~_MYCLASS_();

protected:
  /* additional members */
};

/* Implementation file */
NS_IMPL_ISUPPORTS(_MYCLASS_, imgITools)

_MYCLASS_::_MYCLASS_()
{
  /* member initializers and constructor code */
}

_MYCLASS_::~_MYCLASS_()
{
  /* destructor code */
}

/* imgIContainer decodeImage (in nsIInputStream aStream, in ACString aMimeType); */
NS_IMETHODIMP _MYCLASS_::DecodeImage(nsIInputStream *aStream, const nsACString & aMimeType, imgIContainer * *_retval)
{
    return NS_ERROR_NOT_IMPLEMENTED;
}

/* [deprecated] void decodeImageData (in nsIInputStream aStream, in ACString aMimeType, inout imgIContainer aContainer); */
NS_IMETHODIMP _MYCLASS_::DecodeImageData(nsIInputStream *aStream, const nsACString & aMimeType, imgIContainer * *aContainer)
{
    return NS_ERROR_NOT_IMPLEMENTED;
}

/* nsIInputStream encodeImage (in imgIContainer aContainer, in ACString aMimeType, [optional] in AString outputOptions); */
NS_IMETHODIMP _MYCLASS_::EncodeImage(imgIContainer *aContainer, const nsACString & aMimeType, const nsAString & outputOptions, nsIInputStream * *_retval)
{
    return NS_ERROR_NOT_IMPLEMENTED;
}

/* nsIInputStream encodeScaledImage (in imgIContainer aContainer, in ACString aMimeType, in long aWidth, in long aHeight, [optional] in AString outputOptions); */
NS_IMETHODIMP _MYCLASS_::EncodeScaledImage(imgIContainer *aContainer, const nsACString & aMimeType, int32_t aWidth, int32_t aHeight, const nsAString & outputOptions, nsIInputStream * *_retval)
{
    return NS_ERROR_NOT_IMPLEMENTED;
}

/* imgILoader getImgLoaderForDocument (in nsIDOMDocument doc); */
NS_IMETHODIMP _MYCLASS_::GetImgLoaderForDocument(nsIDOMDocument *doc, imgILoader * *_retval)
{
    return NS_ERROR_NOT_IMPLEMENTED;
}

/* imgICache getImgCacheForDocument (in nsIDOMDocument doc); */
NS_IMETHODIMP _MYCLASS_::GetImgCacheForDocument(nsIDOMDocument *doc, imgICache * *_retval)
{
    return NS_ERROR_NOT_IMPLEMENTED;
}

/* nsIInputStream encodeCroppedImage (in imgIContainer aContainer, in ACString aMimeType, in long aOffsetX, in long aOffsetY, in long aWidth, in long aHeight, [optional] in AString outputOptions); */
NS_IMETHODIMP _MYCLASS_::EncodeCroppedImage(imgIContainer *aContainer, const nsACString & aMimeType, int32_t aOffsetX, int32_t aOffsetY, int32_t aWidth, int32_t aHeight, const nsAString & outputOptions, nsIInputStream * *_retval)
{
    return NS_ERROR_NOT_IMPLEMENTED;
}

/* imgINotificationObserver createScriptedObserver (in imgIScriptedNotificationObserver aObserver); */
NS_IMETHODIMP _MYCLASS_::CreateScriptedObserver(imgIScriptedNotificationObserver *aObserver, imgINotificationObserver * *_retval)
{
    return NS_ERROR_NOT_IMPLEMENTED;
}

/* End of implementation class template. */
#endif


#endif /* __gen_imgITools_h__ */