This file is indexed.

/usr/include/firefox-esr-52/nsIToolkitProfileService.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
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
/*
 * DO NOT EDIT.  THIS FILE IS GENERATED FROM ../../../dist/idl/nsIToolkitProfileService.idl
 */

#ifndef __gen_nsIToolkitProfileService_h__
#define __gen_nsIToolkitProfileService_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 nsISimpleEnumerator; /* forward declaration */

class nsIFile; /* forward declaration */

class nsIToolkitProfile; /* forward declaration */

class nsIProfileLock; /* forward declaration */


/* starting interface:    nsIToolkitProfileService */
#define NS_ITOOLKITPROFILESERVICE_IID_STR "1947899b-f369-48fa-89da-f7c37bb1e6bc"

#define NS_ITOOLKITPROFILESERVICE_IID \
  {0x1947899b, 0xf369, 0x48fa, \
    { 0x89, 0xda, 0xf7, 0xc3, 0x7b, 0xb1, 0xe6, 0xbc }}

class NS_NO_VTABLE nsIToolkitProfileService : public nsISupports {
 public:

  NS_DECLARE_STATIC_IID_ACCESSOR(NS_ITOOLKITPROFILESERVICE_IID)

  /* attribute boolean startWithLastProfile; */
  NS_IMETHOD GetStartWithLastProfile(bool *aStartWithLastProfile) = 0;
  NS_IMETHOD SetStartWithLastProfile(bool aStartWithLastProfile) = 0;

  /* attribute boolean startOffline; */
  NS_IMETHOD GetStartOffline(bool *aStartOffline) = 0;
  NS_IMETHOD SetStartOffline(bool aStartOffline) = 0;

  /* readonly attribute nsISimpleEnumerator profiles; */
  NS_IMETHOD GetProfiles(nsISimpleEnumerator * *aProfiles) = 0;

  /* attribute nsIToolkitProfile selectedProfile; */
  NS_IMETHOD GetSelectedProfile(nsIToolkitProfile * *aSelectedProfile) = 0;
  NS_IMETHOD SetSelectedProfile(nsIToolkitProfile *aSelectedProfile) = 0;

  /* attribute nsIToolkitProfile defaultProfile; */
  NS_IMETHOD GetDefaultProfile(nsIToolkitProfile * *aDefaultProfile) = 0;
  NS_IMETHOD SetDefaultProfile(nsIToolkitProfile *aDefaultProfile) = 0;

  /* nsIToolkitProfile getProfileByName (in AUTF8String aName); */
  NS_IMETHOD GetProfileByName(const nsACString & aName, nsIToolkitProfile * *_retval) = 0;

  /* nsIProfileLock lockProfilePath (in nsIFile aDirectory, in nsIFile aTempDirectory); */
  NS_IMETHOD LockProfilePath(nsIFile *aDirectory, nsIFile *aTempDirectory, nsIProfileLock * *_retval) = 0;

  /* nsIToolkitProfile createProfile (in nsIFile aRootDir, in AUTF8String aName); */
  NS_IMETHOD CreateProfile(nsIFile *aRootDir, const nsACString & aName, nsIToolkitProfile * *_retval) = 0;

  /* nsIToolkitProfile createDefaultProfileForApp (in AUTF8String aProfileName, in AUTF8String aAppName, in AUTF8String aVendorName); */
  NS_IMETHOD CreateDefaultProfileForApp(const nsACString & aProfileName, const nsACString & aAppName, const nsACString & aVendorName, nsIToolkitProfile * *_retval) = 0;

  /* readonly attribute unsigned long profileCount; */
  NS_IMETHOD GetProfileCount(uint32_t *aProfileCount) = 0;

  /* void flush (); */
  NS_IMETHOD Flush(void) = 0;

};

  NS_DEFINE_STATIC_IID_ACCESSOR(nsIToolkitProfileService, NS_ITOOLKITPROFILESERVICE_IID)

/* Use this macro when declaring classes that implement this interface. */
#define NS_DECL_NSITOOLKITPROFILESERVICE \
  NS_IMETHOD GetStartWithLastProfile(bool *aStartWithLastProfile) override; \
  NS_IMETHOD SetStartWithLastProfile(bool aStartWithLastProfile) override; \
  NS_IMETHOD GetStartOffline(bool *aStartOffline) override; \
  NS_IMETHOD SetStartOffline(bool aStartOffline) override; \
  NS_IMETHOD GetProfiles(nsISimpleEnumerator * *aProfiles) override; \
  NS_IMETHOD GetSelectedProfile(nsIToolkitProfile * *aSelectedProfile) override; \
  NS_IMETHOD SetSelectedProfile(nsIToolkitProfile *aSelectedProfile) override; \
  NS_IMETHOD GetDefaultProfile(nsIToolkitProfile * *aDefaultProfile) override; \
  NS_IMETHOD SetDefaultProfile(nsIToolkitProfile *aDefaultProfile) override; \
  NS_IMETHOD GetProfileByName(const nsACString & aName, nsIToolkitProfile * *_retval) override; \
  NS_IMETHOD LockProfilePath(nsIFile *aDirectory, nsIFile *aTempDirectory, nsIProfileLock * *_retval) override; \
  NS_IMETHOD CreateProfile(nsIFile *aRootDir, const nsACString & aName, nsIToolkitProfile * *_retval) override; \
  NS_IMETHOD CreateDefaultProfileForApp(const nsACString & aProfileName, const nsACString & aAppName, const nsACString & aVendorName, nsIToolkitProfile * *_retval) override; \
  NS_IMETHOD GetProfileCount(uint32_t *aProfileCount) override; \
  NS_IMETHOD Flush(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_NSITOOLKITPROFILESERVICE \
  NS_METHOD GetStartWithLastProfile(bool *aStartWithLastProfile); \
  NS_METHOD SetStartWithLastProfile(bool aStartWithLastProfile); \
  NS_METHOD GetStartOffline(bool *aStartOffline); \
  NS_METHOD SetStartOffline(bool aStartOffline); \
  NS_METHOD GetProfiles(nsISimpleEnumerator * *aProfiles); \
  NS_METHOD GetSelectedProfile(nsIToolkitProfile * *aSelectedProfile); \
  NS_METHOD SetSelectedProfile(nsIToolkitProfile *aSelectedProfile); \
  NS_METHOD GetDefaultProfile(nsIToolkitProfile * *aDefaultProfile); \
  NS_METHOD SetDefaultProfile(nsIToolkitProfile *aDefaultProfile); \
  NS_METHOD GetProfileByName(const nsACString & aName, nsIToolkitProfile * *_retval); \
  NS_METHOD LockProfilePath(nsIFile *aDirectory, nsIFile *aTempDirectory, nsIProfileLock * *_retval); \
  NS_METHOD CreateProfile(nsIFile *aRootDir, const nsACString & aName, nsIToolkitProfile * *_retval); \
  NS_METHOD CreateDefaultProfileForApp(const nsACString & aProfileName, const nsACString & aAppName, const nsACString & aVendorName, nsIToolkitProfile * *_retval); \
  NS_METHOD GetProfileCount(uint32_t *aProfileCount); \
  NS_METHOD Flush(void); 

/* Use this macro to declare functions that forward the behavior of this interface to another object. */
#define NS_FORWARD_NSITOOLKITPROFILESERVICE(_to) \
  NS_IMETHOD GetStartWithLastProfile(bool *aStartWithLastProfile) override { return _to GetStartWithLastProfile(aStartWithLastProfile); } \
  NS_IMETHOD SetStartWithLastProfile(bool aStartWithLastProfile) override { return _to SetStartWithLastProfile(aStartWithLastProfile); } \
  NS_IMETHOD GetStartOffline(bool *aStartOffline) override { return _to GetStartOffline(aStartOffline); } \
  NS_IMETHOD SetStartOffline(bool aStartOffline) override { return _to SetStartOffline(aStartOffline); } \
  NS_IMETHOD GetProfiles(nsISimpleEnumerator * *aProfiles) override { return _to GetProfiles(aProfiles); } \
  NS_IMETHOD GetSelectedProfile(nsIToolkitProfile * *aSelectedProfile) override { return _to GetSelectedProfile(aSelectedProfile); } \
  NS_IMETHOD SetSelectedProfile(nsIToolkitProfile *aSelectedProfile) override { return _to SetSelectedProfile(aSelectedProfile); } \
  NS_IMETHOD GetDefaultProfile(nsIToolkitProfile * *aDefaultProfile) override { return _to GetDefaultProfile(aDefaultProfile); } \
  NS_IMETHOD SetDefaultProfile(nsIToolkitProfile *aDefaultProfile) override { return _to SetDefaultProfile(aDefaultProfile); } \
  NS_IMETHOD GetProfileByName(const nsACString & aName, nsIToolkitProfile * *_retval) override { return _to GetProfileByName(aName, _retval); } \
  NS_IMETHOD LockProfilePath(nsIFile *aDirectory, nsIFile *aTempDirectory, nsIProfileLock * *_retval) override { return _to LockProfilePath(aDirectory, aTempDirectory, _retval); } \
  NS_IMETHOD CreateProfile(nsIFile *aRootDir, const nsACString & aName, nsIToolkitProfile * *_retval) override { return _to CreateProfile(aRootDir, aName, _retval); } \
  NS_IMETHOD CreateDefaultProfileForApp(const nsACString & aProfileName, const nsACString & aAppName, const nsACString & aVendorName, nsIToolkitProfile * *_retval) override { return _to CreateDefaultProfileForApp(aProfileName, aAppName, aVendorName, _retval); } \
  NS_IMETHOD GetProfileCount(uint32_t *aProfileCount) override { return _to GetProfileCount(aProfileCount); } \
  NS_IMETHOD Flush(void) override { return _to Flush(); } 

/* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
#define NS_FORWARD_SAFE_NSITOOLKITPROFILESERVICE(_to) \
  NS_IMETHOD GetStartWithLastProfile(bool *aStartWithLastProfile) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetStartWithLastProfile(aStartWithLastProfile); } \
  NS_IMETHOD SetStartWithLastProfile(bool aStartWithLastProfile) override { return !_to ? NS_ERROR_NULL_POINTER : _to->SetStartWithLastProfile(aStartWithLastProfile); } \
  NS_IMETHOD GetStartOffline(bool *aStartOffline) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetStartOffline(aStartOffline); } \
  NS_IMETHOD SetStartOffline(bool aStartOffline) override { return !_to ? NS_ERROR_NULL_POINTER : _to->SetStartOffline(aStartOffline); } \
  NS_IMETHOD GetProfiles(nsISimpleEnumerator * *aProfiles) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetProfiles(aProfiles); } \
  NS_IMETHOD GetSelectedProfile(nsIToolkitProfile * *aSelectedProfile) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetSelectedProfile(aSelectedProfile); } \
  NS_IMETHOD SetSelectedProfile(nsIToolkitProfile *aSelectedProfile) override { return !_to ? NS_ERROR_NULL_POINTER : _to->SetSelectedProfile(aSelectedProfile); } \
  NS_IMETHOD GetDefaultProfile(nsIToolkitProfile * *aDefaultProfile) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetDefaultProfile(aDefaultProfile); } \
  NS_IMETHOD SetDefaultProfile(nsIToolkitProfile *aDefaultProfile) override { return !_to ? NS_ERROR_NULL_POINTER : _to->SetDefaultProfile(aDefaultProfile); } \
  NS_IMETHOD GetProfileByName(const nsACString & aName, nsIToolkitProfile * *_retval) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetProfileByName(aName, _retval); } \
  NS_IMETHOD LockProfilePath(nsIFile *aDirectory, nsIFile *aTempDirectory, nsIProfileLock * *_retval) override { return !_to ? NS_ERROR_NULL_POINTER : _to->LockProfilePath(aDirectory, aTempDirectory, _retval); } \
  NS_IMETHOD CreateProfile(nsIFile *aRootDir, const nsACString & aName, nsIToolkitProfile * *_retval) override { return !_to ? NS_ERROR_NULL_POINTER : _to->CreateProfile(aRootDir, aName, _retval); } \
  NS_IMETHOD CreateDefaultProfileForApp(const nsACString & aProfileName, const nsACString & aAppName, const nsACString & aVendorName, nsIToolkitProfile * *_retval) override { return !_to ? NS_ERROR_NULL_POINTER : _to->CreateDefaultProfileForApp(aProfileName, aAppName, aVendorName, _retval); } \
  NS_IMETHOD GetProfileCount(uint32_t *aProfileCount) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetProfileCount(aProfileCount); } \
  NS_IMETHOD Flush(void) override { return !_to ? NS_ERROR_NULL_POINTER : _to->Flush(); } 

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

/* Header file */
class nsToolkitProfileService : public nsIToolkitProfileService
{
public:
  NS_DECL_ISUPPORTS
  NS_DECL_NSITOOLKITPROFILESERVICE

  nsToolkitProfileService();

private:
  ~nsToolkitProfileService();

protected:
  /* additional members */
};

/* Implementation file */
NS_IMPL_ISUPPORTS(nsToolkitProfileService, nsIToolkitProfileService)

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

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

/* attribute boolean startWithLastProfile; */
NS_IMETHODIMP nsToolkitProfileService::GetStartWithLastProfile(bool *aStartWithLastProfile)
{
    return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsToolkitProfileService::SetStartWithLastProfile(bool aStartWithLastProfile)
{
    return NS_ERROR_NOT_IMPLEMENTED;
}

/* attribute boolean startOffline; */
NS_IMETHODIMP nsToolkitProfileService::GetStartOffline(bool *aStartOffline)
{
    return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsToolkitProfileService::SetStartOffline(bool aStartOffline)
{
    return NS_ERROR_NOT_IMPLEMENTED;
}

/* readonly attribute nsISimpleEnumerator profiles; */
NS_IMETHODIMP nsToolkitProfileService::GetProfiles(nsISimpleEnumerator * *aProfiles)
{
    return NS_ERROR_NOT_IMPLEMENTED;
}

/* attribute nsIToolkitProfile selectedProfile; */
NS_IMETHODIMP nsToolkitProfileService::GetSelectedProfile(nsIToolkitProfile * *aSelectedProfile)
{
    return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsToolkitProfileService::SetSelectedProfile(nsIToolkitProfile *aSelectedProfile)
{
    return NS_ERROR_NOT_IMPLEMENTED;
}

/* attribute nsIToolkitProfile defaultProfile; */
NS_IMETHODIMP nsToolkitProfileService::GetDefaultProfile(nsIToolkitProfile * *aDefaultProfile)
{
    return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsToolkitProfileService::SetDefaultProfile(nsIToolkitProfile *aDefaultProfile)
{
    return NS_ERROR_NOT_IMPLEMENTED;
}

/* nsIToolkitProfile getProfileByName (in AUTF8String aName); */
NS_IMETHODIMP nsToolkitProfileService::GetProfileByName(const nsACString & aName, nsIToolkitProfile * *_retval)
{
    return NS_ERROR_NOT_IMPLEMENTED;
}

/* nsIProfileLock lockProfilePath (in nsIFile aDirectory, in nsIFile aTempDirectory); */
NS_IMETHODIMP nsToolkitProfileService::LockProfilePath(nsIFile *aDirectory, nsIFile *aTempDirectory, nsIProfileLock * *_retval)
{
    return NS_ERROR_NOT_IMPLEMENTED;
}

/* nsIToolkitProfile createProfile (in nsIFile aRootDir, in AUTF8String aName); */
NS_IMETHODIMP nsToolkitProfileService::CreateProfile(nsIFile *aRootDir, const nsACString & aName, nsIToolkitProfile * *_retval)
{
    return NS_ERROR_NOT_IMPLEMENTED;
}

/* nsIToolkitProfile createDefaultProfileForApp (in AUTF8String aProfileName, in AUTF8String aAppName, in AUTF8String aVendorName); */
NS_IMETHODIMP nsToolkitProfileService::CreateDefaultProfileForApp(const nsACString & aProfileName, const nsACString & aAppName, const nsACString & aVendorName, nsIToolkitProfile * *_retval)
{
    return NS_ERROR_NOT_IMPLEMENTED;
}

/* readonly attribute unsigned long profileCount; */
NS_IMETHODIMP nsToolkitProfileService::GetProfileCount(uint32_t *aProfileCount)
{
    return NS_ERROR_NOT_IMPLEMENTED;
}

/* void flush (); */
NS_IMETHODIMP nsToolkitProfileService::Flush()
{
    return NS_ERROR_NOT_IMPLEMENTED;
}

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

#define NS_PROFILESERVICE_CONTRACTID "@mozilla.org/toolkit/profile-service;1"

#endif /* __gen_nsIToolkitProfileService_h__ */