This file is indexed.

/usr/include/thunderbird/amIInstallTrigger.h is in thunderbird-dev 1:24.4.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
/*
 * DO NOT EDIT.  THIS FILE IS GENERATED FROM /build/buildd/thunderbird-24.4.0+build1/mozilla/toolkit/mozapps/extensions/amIInstallTrigger.idl
 */

#ifndef __gen_amIInstallTrigger_h__
#define __gen_amIInstallTrigger_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 nsIVariant; /* forward declaration */


/* starting interface:    amIInstallCallback */
#define AMIINSTALLCALLBACK_IID_STR "bb22f5c0-3ca1-48f6-873c-54e87987700f"

#define AMIINSTALLCALLBACK_IID \
  {0xbb22f5c0, 0x3ca1, 0x48f6, \
    { 0x87, 0x3c, 0x54, 0xe8, 0x79, 0x87, 0x70, 0x0f }}

class NS_NO_VTABLE amIInstallCallback : public nsISupports {
 public: 

  NS_DECLARE_STATIC_IID_ACCESSOR(AMIINSTALLCALLBACK_IID)

  /* void onInstallEnded (in AString aUrl, in int32_t aStatus); */
  NS_IMETHOD OnInstallEnded(const nsAString & aUrl, int32_t aStatus) = 0;

};

  NS_DEFINE_STATIC_IID_ACCESSOR(amIInstallCallback, AMIINSTALLCALLBACK_IID)

/* Use this macro when declaring classes that implement this interface. */
#define NS_DECL_AMIINSTALLCALLBACK \
  NS_IMETHOD OnInstallEnded(const nsAString & aUrl, int32_t aStatus); 

/* Use this macro to declare functions that forward the behavior of this interface to another object. */
#define NS_FORWARD_AMIINSTALLCALLBACK(_to) \
  NS_IMETHOD OnInstallEnded(const nsAString & aUrl, int32_t aStatus) { return _to OnInstallEnded(aUrl, aStatus); } 

/* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
#define NS_FORWARD_SAFE_AMIINSTALLCALLBACK(_to) \
  NS_IMETHOD OnInstallEnded(const nsAString & aUrl, int32_t aStatus) { return !_to ? NS_ERROR_NULL_POINTER : _to->OnInstallEnded(aUrl, aStatus); } 

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

/* Header file */
class amInstallCallback : public amIInstallCallback
{
public:
  NS_DECL_ISUPPORTS
  NS_DECL_AMIINSTALLCALLBACK

  amInstallCallback();

private:
  ~amInstallCallback();

protected:
  /* additional members */
};

/* Implementation file */
NS_IMPL_ISUPPORTS1(amInstallCallback, amIInstallCallback)

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

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

/* void onInstallEnded (in AString aUrl, in int32_t aStatus); */
NS_IMETHODIMP amInstallCallback::OnInstallEnded(const nsAString & aUrl, int32_t aStatus)
{
    return NS_ERROR_NOT_IMPLEMENTED;
}

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


/* starting interface:    amIInstallTrigger */
#define AMIINSTALLTRIGGER_IID_STR "14b4e84d-001c-4403-a608-52a67ffaab40"

#define AMIINSTALLTRIGGER_IID \
  {0x14b4e84d, 0x001c, 0x4403, \
    { 0xa6, 0x08, 0x52, 0xa6, 0x7f, 0xfa, 0xab, 0x40 }}

class NS_NO_VTABLE amIInstallTrigger : public nsISupports {
 public: 

  NS_DECLARE_STATIC_IID_ACCESSOR(AMIINSTALLTRIGGER_IID)

  enum {
    SKIN = 1U,
    LOCALE = 2U,
    CONTENT = 4U,
    PACKAGE = 7U
  };

  /* [deprecated] boolean updateEnabled (); */
  NS_IMETHOD UpdateEnabled(bool *_retval) = 0;

  /* boolean enabled (); */
  NS_IMETHOD Enabled(bool *_retval) = 0;

  /* boolean install (in nsIVariant aArgs, [optional] in amIInstallCallback aCallback); */
  NS_IMETHOD Install(nsIVariant *aArgs, amIInstallCallback *aCallback, bool *_retval) = 0;

  /* boolean installChrome (in uint32_t aType, in AString aUrl, in AString aSkin); */
  NS_IMETHOD InstallChrome(uint32_t aType, const nsAString & aUrl, const nsAString & aSkin, bool *_retval) = 0;

  /* [deprecated] boolean startSoftwareUpdate (in AString aUrl, [optional] in int32_t aFlags); */
  NS_IMETHOD StartSoftwareUpdate(const nsAString & aUrl, int32_t aFlags, bool *_retval) = 0;

};

  NS_DEFINE_STATIC_IID_ACCESSOR(amIInstallTrigger, AMIINSTALLTRIGGER_IID)

/* Use this macro when declaring classes that implement this interface. */
#define NS_DECL_AMIINSTALLTRIGGER \
  NS_IMETHOD UpdateEnabled(bool *_retval); \
  NS_IMETHOD Enabled(bool *_retval); \
  NS_IMETHOD Install(nsIVariant *aArgs, amIInstallCallback *aCallback, bool *_retval); \
  NS_IMETHOD InstallChrome(uint32_t aType, const nsAString & aUrl, const nsAString & aSkin, bool *_retval); \
  NS_IMETHOD StartSoftwareUpdate(const nsAString & aUrl, int32_t aFlags, bool *_retval); 

/* Use this macro to declare functions that forward the behavior of this interface to another object. */
#define NS_FORWARD_AMIINSTALLTRIGGER(_to) \
  NS_IMETHOD UpdateEnabled(bool *_retval) { return _to UpdateEnabled(_retval); } \
  NS_IMETHOD Enabled(bool *_retval) { return _to Enabled(_retval); } \
  NS_IMETHOD Install(nsIVariant *aArgs, amIInstallCallback *aCallback, bool *_retval) { return _to Install(aArgs, aCallback, _retval); } \
  NS_IMETHOD InstallChrome(uint32_t aType, const nsAString & aUrl, const nsAString & aSkin, bool *_retval) { return _to InstallChrome(aType, aUrl, aSkin, _retval); } \
  NS_IMETHOD StartSoftwareUpdate(const nsAString & aUrl, int32_t aFlags, bool *_retval) { return _to StartSoftwareUpdate(aUrl, aFlags, _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_AMIINSTALLTRIGGER(_to) \
  NS_IMETHOD UpdateEnabled(bool *_retval) { return !_to ? NS_ERROR_NULL_POINTER : _to->UpdateEnabled(_retval); } \
  NS_IMETHOD Enabled(bool *_retval) { return !_to ? NS_ERROR_NULL_POINTER : _to->Enabled(_retval); } \
  NS_IMETHOD Install(nsIVariant *aArgs, amIInstallCallback *aCallback, bool *_retval) { return !_to ? NS_ERROR_NULL_POINTER : _to->Install(aArgs, aCallback, _retval); } \
  NS_IMETHOD InstallChrome(uint32_t aType, const nsAString & aUrl, const nsAString & aSkin, bool *_retval) { return !_to ? NS_ERROR_NULL_POINTER : _to->InstallChrome(aType, aUrl, aSkin, _retval); } \
  NS_IMETHOD StartSoftwareUpdate(const nsAString & aUrl, int32_t aFlags, bool *_retval) { return !_to ? NS_ERROR_NULL_POINTER : _to->StartSoftwareUpdate(aUrl, aFlags, _retval); } 

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

/* Header file */
class amInstallTrigger : public amIInstallTrigger
{
public:
  NS_DECL_ISUPPORTS
  NS_DECL_AMIINSTALLTRIGGER

  amInstallTrigger();

private:
  ~amInstallTrigger();

protected:
  /* additional members */
};

/* Implementation file */
NS_IMPL_ISUPPORTS1(amInstallTrigger, amIInstallTrigger)

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

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

/* [deprecated] boolean updateEnabled (); */
NS_IMETHODIMP amInstallTrigger::UpdateEnabled(bool *_retval)
{
    return NS_ERROR_NOT_IMPLEMENTED;
}

/* boolean enabled (); */
NS_IMETHODIMP amInstallTrigger::Enabled(bool *_retval)
{
    return NS_ERROR_NOT_IMPLEMENTED;
}

/* boolean install (in nsIVariant aArgs, [optional] in amIInstallCallback aCallback); */
NS_IMETHODIMP amInstallTrigger::Install(nsIVariant *aArgs, amIInstallCallback *aCallback, bool *_retval)
{
    return NS_ERROR_NOT_IMPLEMENTED;
}

/* boolean installChrome (in uint32_t aType, in AString aUrl, in AString aSkin); */
NS_IMETHODIMP amInstallTrigger::InstallChrome(uint32_t aType, const nsAString & aUrl, const nsAString & aSkin, bool *_retval)
{
    return NS_ERROR_NOT_IMPLEMENTED;
}

/* [deprecated] boolean startSoftwareUpdate (in AString aUrl, [optional] in int32_t aFlags); */
NS_IMETHODIMP amInstallTrigger::StartSoftwareUpdate(const nsAString & aUrl, int32_t aFlags, bool *_retval)
{
    return NS_ERROR_NOT_IMPLEMENTED;
}

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


#endif /* __gen_amIInstallTrigger_h__ */