This file is indexed.

/usr/include/firefox-esr-52/mozIPersonalDictionary.h is in firefox-esr-dev 52.8.1esr-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
/*
 * DO NOT EDIT.  THIS FILE IS GENERATED FROM ../../../dist/idl/mozIPersonalDictionary.idl
 */

#ifndef __gen_mozIPersonalDictionary_h__
#define __gen_mozIPersonalDictionary_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 nsIStringEnumerator; /* forward declaration */


/* starting interface:    mozIPersonalDictionary */
#define MOZIPERSONALDICTIONARY_IID_STR "7ef52eaf-b7e1-462b-87e2-5d1dbaca9048"

#define MOZIPERSONALDICTIONARY_IID \
  {0x7ef52eaf, 0xb7e1, 0x462b, \
    { 0x87, 0xe2, 0x5d, 0x1d, 0xba, 0xca, 0x90, 0x48 }}

class NS_NO_VTABLE mozIPersonalDictionary : public nsISupports {
 public:

  NS_DECLARE_STATIC_IID_ACCESSOR(MOZIPERSONALDICTIONARY_IID)

  /* void load (); */
  NS_IMETHOD Load(void) = 0;

  /* void save (); */
  NS_IMETHOD Save(void) = 0;

  /* readonly attribute nsIStringEnumerator wordList; */
  NS_IMETHOD GetWordList(nsIStringEnumerator * *aWordList) = 0;

  /* boolean check (in wstring word, in wstring lang); */
  NS_IMETHOD Check(const char16_t * word, const char16_t * lang, bool *_retval) = 0;

  /* void addWord (in wstring word, in wstring lang); */
  NS_IMETHOD AddWord(const char16_t * word, const char16_t * lang) = 0;

  /* void removeWord (in wstring word, in wstring lang); */
  NS_IMETHOD RemoveWord(const char16_t * word, const char16_t * lang) = 0;

  /* void ignoreWord (in wstring word); */
  NS_IMETHOD IgnoreWord(const char16_t * word) = 0;

  /* void endSession (); */
  NS_IMETHOD EndSession(void) = 0;

  /* void addCorrection (in wstring word, in wstring correction, in wstring lang); */
  NS_IMETHOD AddCorrection(const char16_t * word, const char16_t * correction, const char16_t * lang) = 0;

  /* void removeCorrection (in wstring word, in wstring correction, in wstring lang); */
  NS_IMETHOD RemoveCorrection(const char16_t * word, const char16_t * correction, const char16_t * lang) = 0;

  /* void getCorrection (in wstring word, [array, size_is (count)] out wstring words, out uint32_t count); */
  NS_IMETHOD GetCorrection(const char16_t * word, char16_t * **words, uint32_t *count) = 0;

};

  NS_DEFINE_STATIC_IID_ACCESSOR(mozIPersonalDictionary, MOZIPERSONALDICTIONARY_IID)

/* Use this macro when declaring classes that implement this interface. */
#define NS_DECL_MOZIPERSONALDICTIONARY \
  NS_IMETHOD Load(void) override; \
  NS_IMETHOD Save(void) override; \
  NS_IMETHOD GetWordList(nsIStringEnumerator * *aWordList) override; \
  NS_IMETHOD Check(const char16_t * word, const char16_t * lang, bool *_retval) override; \
  NS_IMETHOD AddWord(const char16_t * word, const char16_t * lang) override; \
  NS_IMETHOD RemoveWord(const char16_t * word, const char16_t * lang) override; \
  NS_IMETHOD IgnoreWord(const char16_t * word) override; \
  NS_IMETHOD EndSession(void) override; \
  NS_IMETHOD AddCorrection(const char16_t * word, const char16_t * correction, const char16_t * lang) override; \
  NS_IMETHOD RemoveCorrection(const char16_t * word, const char16_t * correction, const char16_t * lang) override; \
  NS_IMETHOD GetCorrection(const char16_t * word, char16_t * **words, uint32_t *count) 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_MOZIPERSONALDICTIONARY \
  NS_METHOD Load(void); \
  NS_METHOD Save(void); \
  NS_METHOD GetWordList(nsIStringEnumerator * *aWordList); \
  NS_METHOD Check(const char16_t * word, const char16_t * lang, bool *_retval); \
  NS_METHOD AddWord(const char16_t * word, const char16_t * lang); \
  NS_METHOD RemoveWord(const char16_t * word, const char16_t * lang); \
  NS_METHOD IgnoreWord(const char16_t * word); \
  NS_METHOD EndSession(void); \
  NS_METHOD AddCorrection(const char16_t * word, const char16_t * correction, const char16_t * lang); \
  NS_METHOD RemoveCorrection(const char16_t * word, const char16_t * correction, const char16_t * lang); \
  NS_METHOD GetCorrection(const char16_t * word, char16_t * **words, uint32_t *count); 

/* Use this macro to declare functions that forward the behavior of this interface to another object. */
#define NS_FORWARD_MOZIPERSONALDICTIONARY(_to) \
  NS_IMETHOD Load(void) override { return _to Load(); } \
  NS_IMETHOD Save(void) override { return _to Save(); } \
  NS_IMETHOD GetWordList(nsIStringEnumerator * *aWordList) override { return _to GetWordList(aWordList); } \
  NS_IMETHOD Check(const char16_t * word, const char16_t * lang, bool *_retval) override { return _to Check(word, lang, _retval); } \
  NS_IMETHOD AddWord(const char16_t * word, const char16_t * lang) override { return _to AddWord(word, lang); } \
  NS_IMETHOD RemoveWord(const char16_t * word, const char16_t * lang) override { return _to RemoveWord(word, lang); } \
  NS_IMETHOD IgnoreWord(const char16_t * word) override { return _to IgnoreWord(word); } \
  NS_IMETHOD EndSession(void) override { return _to EndSession(); } \
  NS_IMETHOD AddCorrection(const char16_t * word, const char16_t * correction, const char16_t * lang) override { return _to AddCorrection(word, correction, lang); } \
  NS_IMETHOD RemoveCorrection(const char16_t * word, const char16_t * correction, const char16_t * lang) override { return _to RemoveCorrection(word, correction, lang); } \
  NS_IMETHOD GetCorrection(const char16_t * word, char16_t * **words, uint32_t *count) override { return _to GetCorrection(word, words, count); } 

/* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
#define NS_FORWARD_SAFE_MOZIPERSONALDICTIONARY(_to) \
  NS_IMETHOD Load(void) override { return !_to ? NS_ERROR_NULL_POINTER : _to->Load(); } \
  NS_IMETHOD Save(void) override { return !_to ? NS_ERROR_NULL_POINTER : _to->Save(); } \
  NS_IMETHOD GetWordList(nsIStringEnumerator * *aWordList) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetWordList(aWordList); } \
  NS_IMETHOD Check(const char16_t * word, const char16_t * lang, bool *_retval) override { return !_to ? NS_ERROR_NULL_POINTER : _to->Check(word, lang, _retval); } \
  NS_IMETHOD AddWord(const char16_t * word, const char16_t * lang) override { return !_to ? NS_ERROR_NULL_POINTER : _to->AddWord(word, lang); } \
  NS_IMETHOD RemoveWord(const char16_t * word, const char16_t * lang) override { return !_to ? NS_ERROR_NULL_POINTER : _to->RemoveWord(word, lang); } \
  NS_IMETHOD IgnoreWord(const char16_t * word) override { return !_to ? NS_ERROR_NULL_POINTER : _to->IgnoreWord(word); } \
  NS_IMETHOD EndSession(void) override { return !_to ? NS_ERROR_NULL_POINTER : _to->EndSession(); } \
  NS_IMETHOD AddCorrection(const char16_t * word, const char16_t * correction, const char16_t * lang) override { return !_to ? NS_ERROR_NULL_POINTER : _to->AddCorrection(word, correction, lang); } \
  NS_IMETHOD RemoveCorrection(const char16_t * word, const char16_t * correction, const char16_t * lang) override { return !_to ? NS_ERROR_NULL_POINTER : _to->RemoveCorrection(word, correction, lang); } \
  NS_IMETHOD GetCorrection(const char16_t * word, char16_t * **words, uint32_t *count) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetCorrection(word, words, count); } 

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

/* Header file */
class _MYCLASS_ : public mozIPersonalDictionary
{
public:
  NS_DECL_ISUPPORTS
  NS_DECL_MOZIPERSONALDICTIONARY

  _MYCLASS_();

private:
  ~_MYCLASS_();

protected:
  /* additional members */
};

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

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

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

/* void load (); */
NS_IMETHODIMP _MYCLASS_::Load()
{
    return NS_ERROR_NOT_IMPLEMENTED;
}

/* void save (); */
NS_IMETHODIMP _MYCLASS_::Save()
{
    return NS_ERROR_NOT_IMPLEMENTED;
}

/* readonly attribute nsIStringEnumerator wordList; */
NS_IMETHODIMP _MYCLASS_::GetWordList(nsIStringEnumerator * *aWordList)
{
    return NS_ERROR_NOT_IMPLEMENTED;
}

/* boolean check (in wstring word, in wstring lang); */
NS_IMETHODIMP _MYCLASS_::Check(const char16_t * word, const char16_t * lang, bool *_retval)
{
    return NS_ERROR_NOT_IMPLEMENTED;
}

/* void addWord (in wstring word, in wstring lang); */
NS_IMETHODIMP _MYCLASS_::AddWord(const char16_t * word, const char16_t * lang)
{
    return NS_ERROR_NOT_IMPLEMENTED;
}

/* void removeWord (in wstring word, in wstring lang); */
NS_IMETHODIMP _MYCLASS_::RemoveWord(const char16_t * word, const char16_t * lang)
{
    return NS_ERROR_NOT_IMPLEMENTED;
}

/* void ignoreWord (in wstring word); */
NS_IMETHODIMP _MYCLASS_::IgnoreWord(const char16_t * word)
{
    return NS_ERROR_NOT_IMPLEMENTED;
}

/* void endSession (); */
NS_IMETHODIMP _MYCLASS_::EndSession()
{
    return NS_ERROR_NOT_IMPLEMENTED;
}

/* void addCorrection (in wstring word, in wstring correction, in wstring lang); */
NS_IMETHODIMP _MYCLASS_::AddCorrection(const char16_t * word, const char16_t * correction, const char16_t * lang)
{
    return NS_ERROR_NOT_IMPLEMENTED;
}

/* void removeCorrection (in wstring word, in wstring correction, in wstring lang); */
NS_IMETHODIMP _MYCLASS_::RemoveCorrection(const char16_t * word, const char16_t * correction, const char16_t * lang)
{
    return NS_ERROR_NOT_IMPLEMENTED;
}

/* void getCorrection (in wstring word, [array, size_is (count)] out wstring words, out uint32_t count); */
NS_IMETHODIMP _MYCLASS_::GetCorrection(const char16_t * word, char16_t * **words, uint32_t *count)
{
    return NS_ERROR_NOT_IMPLEMENTED;
}

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


#endif /* __gen_mozIPersonalDictionary_h__ */