This file is indexed.

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

#ifndef __gen_nsIImapMockChannel_h__
#define __gen_nsIImapMockChannel_h__


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

#ifndef __gen_nsIChannel_h__
#include "nsIChannel.h"
#endif

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

class nsIProgressEventSink; /* forward declaration */

class nsIURI; /* forward declaration */

class nsIImapProtocol; /* forward declaration */


/* starting interface:    nsIImapMockChannel */
#define NS_IIMAPMOCKCHANNEL_IID_STR "e0178cd5-d37b-4bde-9ab8-752083536225"

#define NS_IIMAPMOCKCHANNEL_IID \
  {0xe0178cd5, 0xd37b, 0x4bde, \
    { 0x9a, 0xb8, 0x75, 0x20, 0x83, 0x53, 0x62, 0x25 }}

class NS_NO_VTABLE nsIImapMockChannel : public nsIChannel {
 public: 

  NS_DECLARE_STATIC_IID_ACCESSOR(NS_IIMAPMOCKCHANNEL_IID)

  /* attribute nsIProgressEventSink progressEventSink; */
  NS_IMETHOD GetProgressEventSink(nsIProgressEventSink * *aProgressEventSink) = 0;
  NS_IMETHOD SetProgressEventSink(nsIProgressEventSink *aProgressEventSink) = 0;

  /* void GetChannelListener (out nsIStreamListener aChannelListener); */
  NS_IMETHOD GetChannelListener(nsIStreamListener * *aChannelListener) = 0;

  /* void GetChannelContext (out nsISupports aChannelContext); */
  NS_IMETHOD GetChannelContext(nsISupports * *aChannelContext) = 0;

  /* void Close (); */
  NS_IMETHOD Close(void) = 0;

  /* void setImapProtocol (in nsIImapProtocol aProtocol); */
  NS_IMETHOD SetImapProtocol(nsIImapProtocol *aProtocol) = 0;

  /* [noscript] void setSecurityInfo (in nsISupports securityInfo); */
  NS_IMETHOD SetSecurityInfo(nsISupports *securityInfo) = 0;

  /* void setURI (in nsIURI uri); */
  NS_IMETHOD SetURI(nsIURI *uri) = 0;

};

  NS_DEFINE_STATIC_IID_ACCESSOR(nsIImapMockChannel, NS_IIMAPMOCKCHANNEL_IID)

/* Use this macro when declaring classes that implement this interface. */
#define NS_DECL_NSIIMAPMOCKCHANNEL \
  NS_IMETHOD GetProgressEventSink(nsIProgressEventSink * *aProgressEventSink) override; \
  NS_IMETHOD SetProgressEventSink(nsIProgressEventSink *aProgressEventSink) override; \
  NS_IMETHOD GetChannelListener(nsIStreamListener * *aChannelListener) override; \
  NS_IMETHOD GetChannelContext(nsISupports * *aChannelContext) override; \
  NS_IMETHOD Close(void) override; \
  NS_IMETHOD SetImapProtocol(nsIImapProtocol *aProtocol) override; \
  NS_IMETHOD SetSecurityInfo(nsISupports *securityInfo) override; \
  NS_IMETHOD SetURI(nsIURI *uri) override; 

/* Use this macro to declare functions that forward the behavior of this interface to another object. */
#define NS_FORWARD_NSIIMAPMOCKCHANNEL(_to) \
  NS_IMETHOD GetProgressEventSink(nsIProgressEventSink * *aProgressEventSink) override { return _to GetProgressEventSink(aProgressEventSink); } \
  NS_IMETHOD SetProgressEventSink(nsIProgressEventSink *aProgressEventSink) override { return _to SetProgressEventSink(aProgressEventSink); } \
  NS_IMETHOD GetChannelListener(nsIStreamListener * *aChannelListener) override { return _to GetChannelListener(aChannelListener); } \
  NS_IMETHOD GetChannelContext(nsISupports * *aChannelContext) override { return _to GetChannelContext(aChannelContext); } \
  NS_IMETHOD Close(void) override { return _to Close(); } \
  NS_IMETHOD SetImapProtocol(nsIImapProtocol *aProtocol) override { return _to SetImapProtocol(aProtocol); } \
  NS_IMETHOD SetSecurityInfo(nsISupports *securityInfo) override { return _to SetSecurityInfo(securityInfo); } \
  NS_IMETHOD SetURI(nsIURI *uri) override { return _to SetURI(uri); } 

/* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
#define NS_FORWARD_SAFE_NSIIMAPMOCKCHANNEL(_to) \
  NS_IMETHOD GetProgressEventSink(nsIProgressEventSink * *aProgressEventSink) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetProgressEventSink(aProgressEventSink); } \
  NS_IMETHOD SetProgressEventSink(nsIProgressEventSink *aProgressEventSink) override { return !_to ? NS_ERROR_NULL_POINTER : _to->SetProgressEventSink(aProgressEventSink); } \
  NS_IMETHOD GetChannelListener(nsIStreamListener * *aChannelListener) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetChannelListener(aChannelListener); } \
  NS_IMETHOD GetChannelContext(nsISupports * *aChannelContext) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetChannelContext(aChannelContext); } \
  NS_IMETHOD Close(void) override { return !_to ? NS_ERROR_NULL_POINTER : _to->Close(); } \
  NS_IMETHOD SetImapProtocol(nsIImapProtocol *aProtocol) override { return !_to ? NS_ERROR_NULL_POINTER : _to->SetImapProtocol(aProtocol); } \
  NS_IMETHOD SetSecurityInfo(nsISupports *securityInfo) override { return !_to ? NS_ERROR_NULL_POINTER : _to->SetSecurityInfo(securityInfo); } \
  NS_IMETHOD SetURI(nsIURI *uri) override { return !_to ? NS_ERROR_NULL_POINTER : _to->SetURI(uri); } 

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

/* Header file */
class nsImapMockChannel : public nsIImapMockChannel
{
public:
  NS_DECL_ISUPPORTS
  NS_DECL_NSIIMAPMOCKCHANNEL

  nsImapMockChannel();

private:
  ~nsImapMockChannel();

protected:
  /* additional members */
};

/* Implementation file */
NS_IMPL_ISUPPORTS(nsImapMockChannel, nsIImapMockChannel)

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

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

/* attribute nsIProgressEventSink progressEventSink; */
NS_IMETHODIMP nsImapMockChannel::GetProgressEventSink(nsIProgressEventSink * *aProgressEventSink)
{
    return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsImapMockChannel::SetProgressEventSink(nsIProgressEventSink *aProgressEventSink)
{
    return NS_ERROR_NOT_IMPLEMENTED;
}

/* void GetChannelListener (out nsIStreamListener aChannelListener); */
NS_IMETHODIMP nsImapMockChannel::GetChannelListener(nsIStreamListener * *aChannelListener)
{
    return NS_ERROR_NOT_IMPLEMENTED;
}

/* void GetChannelContext (out nsISupports aChannelContext); */
NS_IMETHODIMP nsImapMockChannel::GetChannelContext(nsISupports * *aChannelContext)
{
    return NS_ERROR_NOT_IMPLEMENTED;
}

/* void Close (); */
NS_IMETHODIMP nsImapMockChannel::Close()
{
    return NS_ERROR_NOT_IMPLEMENTED;
}

/* void setImapProtocol (in nsIImapProtocol aProtocol); */
NS_IMETHODIMP nsImapMockChannel::SetImapProtocol(nsIImapProtocol *aProtocol)
{
    return NS_ERROR_NOT_IMPLEMENTED;
}

/* [noscript] void setSecurityInfo (in nsISupports securityInfo); */
NS_IMETHODIMP nsImapMockChannel::SetSecurityInfo(nsISupports *securityInfo)
{
    return NS_ERROR_NOT_IMPLEMENTED;
}

/* void setURI (in nsIURI uri); */
NS_IMETHODIMP nsImapMockChannel::SetURI(nsIURI *uri)
{
    return NS_ERROR_NOT_IMPLEMENTED;
}

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


#endif /* __gen_nsIImapMockChannel_h__ */