This file is indexed.

/usr/include/thunderbird/msgIOAuth2Module.h is in thunderbird-dev 1:38.6.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
/*
 * DO NOT EDIT.  THIS FILE IS GENERATED FROM ../../../dist/idl/msgIOAuth2Module.idl
 */

#ifndef __gen_msgIOAuth2Module_h__
#define __gen_msgIOAuth2Module_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 nsIMsgIncomingServer; /* forward declaration */

class nsISmtpServer; /* forward declaration */


/* starting interface:    msgIOAuth2ModuleListener */
#define MSGIOAUTH2MODULELISTENER_IID_STR "9a088b49-bc13-4f99-9478-053a6a43e370"

#define MSGIOAUTH2MODULELISTENER_IID \
  {0x9a088b49, 0xbc13, 0x4f99, \
    { 0x94, 0x78, 0x05, 0x3a, 0x6a, 0x43, 0xe3, 0x70 }}

class NS_NO_VTABLE msgIOAuth2ModuleListener : public nsISupports {
 public: 

  NS_DECLARE_STATIC_IID_ACCESSOR(MSGIOAUTH2MODULELISTENER_IID)

  /* void onSuccess (in ACString aBearerToken); */
  NS_IMETHOD OnSuccess(const nsACString & aBearerToken) = 0;

  /* void onFailure (in nsresult aError); */
  NS_IMETHOD OnFailure(nsresult aError) = 0;

};

  NS_DEFINE_STATIC_IID_ACCESSOR(msgIOAuth2ModuleListener, MSGIOAUTH2MODULELISTENER_IID)

/* Use this macro when declaring classes that implement this interface. */
#define NS_DECL_MSGIOAUTH2MODULELISTENER \
  NS_IMETHOD OnSuccess(const nsACString & aBearerToken) override; \
  NS_IMETHOD OnFailure(nsresult aError) override; 

/* Use this macro to declare functions that forward the behavior of this interface to another object. */
#define NS_FORWARD_MSGIOAUTH2MODULELISTENER(_to) \
  NS_IMETHOD OnSuccess(const nsACString & aBearerToken) override { return _to OnSuccess(aBearerToken); } \
  NS_IMETHOD OnFailure(nsresult aError) override { return _to OnFailure(aError); } 

/* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
#define NS_FORWARD_SAFE_MSGIOAUTH2MODULELISTENER(_to) \
  NS_IMETHOD OnSuccess(const nsACString & aBearerToken) override { return !_to ? NS_ERROR_NULL_POINTER : _to->OnSuccess(aBearerToken); } \
  NS_IMETHOD OnFailure(nsresult aError) override { return !_to ? NS_ERROR_NULL_POINTER : _to->OnFailure(aError); } 

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

/* Header file */
class _MYCLASS_ : public msgIOAuth2ModuleListener
{
public:
  NS_DECL_ISUPPORTS
  NS_DECL_MSGIOAUTH2MODULELISTENER

  _MYCLASS_();

private:
  ~_MYCLASS_();

protected:
  /* additional members */
};

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

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

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

/* void onSuccess (in ACString aBearerToken); */
NS_IMETHODIMP _MYCLASS_::OnSuccess(const nsACString & aBearerToken)
{
    return NS_ERROR_NOT_IMPLEMENTED;
}

/* void onFailure (in nsresult aError); */
NS_IMETHODIMP _MYCLASS_::OnFailure(nsresult aError)
{
    return NS_ERROR_NOT_IMPLEMENTED;
}

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


/* starting interface:    msgIOAuth2Module */
#define MSGIOAUTH2MODULE_IID_STR "68c275f8-cfa7-4622-b279-af290616cae6"

#define MSGIOAUTH2MODULE_IID \
  {0x68c275f8, 0xcfa7, 0x4622, \
    { 0xb2, 0x79, 0xaf, 0x29, 0x06, 0x16, 0xca, 0xe6 }}

class NS_NO_VTABLE msgIOAuth2Module : public nsISupports {
 public: 

  NS_DECLARE_STATIC_IID_ACCESSOR(MSGIOAUTH2MODULE_IID)

  /* bool initFromSmtp (in nsISmtpServer aSmtpServer); */
  NS_IMETHOD InitFromSmtp(nsISmtpServer *aSmtpServer, bool *_retval) = 0;

  /* bool initFromMail (in nsIMsgIncomingServer aServer); */
  NS_IMETHOD InitFromMail(nsIMsgIncomingServer *aServer, bool *_retval) = 0;

  /* void connect (in boolean aWithUI, in msgIOAuth2ModuleListener aCallback); */
  NS_IMETHOD Connect(bool aWithUI, msgIOAuth2ModuleListener *aCallback) = 0;

  /* ACString buildXOAuth2String (); */
  NS_IMETHOD BuildXOAuth2String(nsACString & _retval) = 0;

};

  NS_DEFINE_STATIC_IID_ACCESSOR(msgIOAuth2Module, MSGIOAUTH2MODULE_IID)

/* Use this macro when declaring classes that implement this interface. */
#define NS_DECL_MSGIOAUTH2MODULE \
  NS_IMETHOD InitFromSmtp(nsISmtpServer *aSmtpServer, bool *_retval) override; \
  NS_IMETHOD InitFromMail(nsIMsgIncomingServer *aServer, bool *_retval) override; \
  NS_IMETHOD Connect(bool aWithUI, msgIOAuth2ModuleListener *aCallback) override; \
  NS_IMETHOD BuildXOAuth2String(nsACString & _retval) override; 

/* Use this macro to declare functions that forward the behavior of this interface to another object. */
#define NS_FORWARD_MSGIOAUTH2MODULE(_to) \
  NS_IMETHOD InitFromSmtp(nsISmtpServer *aSmtpServer, bool *_retval) override { return _to InitFromSmtp(aSmtpServer, _retval); } \
  NS_IMETHOD InitFromMail(nsIMsgIncomingServer *aServer, bool *_retval) override { return _to InitFromMail(aServer, _retval); } \
  NS_IMETHOD Connect(bool aWithUI, msgIOAuth2ModuleListener *aCallback) override { return _to Connect(aWithUI, aCallback); } \
  NS_IMETHOD BuildXOAuth2String(nsACString & _retval) override { return _to BuildXOAuth2String(_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_MSGIOAUTH2MODULE(_to) \
  NS_IMETHOD InitFromSmtp(nsISmtpServer *aSmtpServer, bool *_retval) override { return !_to ? NS_ERROR_NULL_POINTER : _to->InitFromSmtp(aSmtpServer, _retval); } \
  NS_IMETHOD InitFromMail(nsIMsgIncomingServer *aServer, bool *_retval) override { return !_to ? NS_ERROR_NULL_POINTER : _to->InitFromMail(aServer, _retval); } \
  NS_IMETHOD Connect(bool aWithUI, msgIOAuth2ModuleListener *aCallback) override { return !_to ? NS_ERROR_NULL_POINTER : _to->Connect(aWithUI, aCallback); } \
  NS_IMETHOD BuildXOAuth2String(nsACString & _retval) override { return !_to ? NS_ERROR_NULL_POINTER : _to->BuildXOAuth2String(_retval); } 

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

/* Header file */
class _MYCLASS_ : public msgIOAuth2Module
{
public:
  NS_DECL_ISUPPORTS
  NS_DECL_MSGIOAUTH2MODULE

  _MYCLASS_();

private:
  ~_MYCLASS_();

protected:
  /* additional members */
};

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

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

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

/* bool initFromSmtp (in nsISmtpServer aSmtpServer); */
NS_IMETHODIMP _MYCLASS_::InitFromSmtp(nsISmtpServer *aSmtpServer, bool *_retval)
{
    return NS_ERROR_NOT_IMPLEMENTED;
}

/* bool initFromMail (in nsIMsgIncomingServer aServer); */
NS_IMETHODIMP _MYCLASS_::InitFromMail(nsIMsgIncomingServer *aServer, bool *_retval)
{
    return NS_ERROR_NOT_IMPLEMENTED;
}

/* void connect (in boolean aWithUI, in msgIOAuth2ModuleListener aCallback); */
NS_IMETHODIMP _MYCLASS_::Connect(bool aWithUI, msgIOAuth2ModuleListener *aCallback)
{
    return NS_ERROR_NOT_IMPLEMENTED;
}

/* ACString buildXOAuth2String (); */
NS_IMETHODIMP _MYCLASS_::BuildXOAuth2String(nsACString & _retval)
{
    return NS_ERROR_NOT_IMPLEMENTED;
}

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

#define MSGIOAUTH2MODULE_CONTRACTID "@mozilla.org/mail/oauth2-module;1"

#endif /* __gen_msgIOAuth2Module_h__ */