This file is indexed.

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

#ifndef __gen_nsIMsgBiffManager_h__
#define __gen_nsIMsgBiffManager_h__


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

#ifndef __gen_nsIMsgIncomingServer_h__
#include "nsIMsgIncomingServer.h"
#endif

/* For IDL files that don't want to include root IDL files. */
#ifndef NS_NO_VTABLE
#define NS_NO_VTABLE
#endif

/* starting interface:    nsIMsgBiffManager */
#define NS_IMSGBIFFMANAGER_IID_STR "17275d52-1622-11d3-8a84-0060b0fc04d2"

#define NS_IMSGBIFFMANAGER_IID \
  {0x17275d52, 0x1622, 0x11d3, \
    { 0x8a, 0x84, 0x00, 0x60, 0xb0, 0xfc, 0x04, 0xd2 }}

class NS_NO_VTABLE nsIMsgBiffManager : public nsISupports {
 public:

  NS_DECLARE_STATIC_IID_ACCESSOR(NS_IMSGBIFFMANAGER_IID)

  /* void init (); */
  NS_IMETHOD Init(void) = 0;

  /* void addServerBiff (in nsIMsgIncomingServer server); */
  NS_IMETHOD AddServerBiff(nsIMsgIncomingServer *server) = 0;

  /* void removeServerBiff (in nsIMsgIncomingServer server); */
  NS_IMETHOD RemoveServerBiff(nsIMsgIncomingServer *server) = 0;

  /* void forceBiff (in nsIMsgIncomingServer server); */
  NS_IMETHOD ForceBiff(nsIMsgIncomingServer *server) = 0;

  /* void forceBiffAll (); */
  NS_IMETHOD ForceBiffAll(void) = 0;

  /* void shutdown (); */
  NS_IMETHOD Shutdown(void) = 0;

};

  NS_DEFINE_STATIC_IID_ACCESSOR(nsIMsgBiffManager, NS_IMSGBIFFMANAGER_IID)

/* Use this macro when declaring classes that implement this interface. */
#define NS_DECL_NSIMSGBIFFMANAGER \
  NS_IMETHOD Init(void) override; \
  NS_IMETHOD AddServerBiff(nsIMsgIncomingServer *server) override; \
  NS_IMETHOD RemoveServerBiff(nsIMsgIncomingServer *server) override; \
  NS_IMETHOD ForceBiff(nsIMsgIncomingServer *server) override; \
  NS_IMETHOD ForceBiffAll(void) override; \
  NS_IMETHOD Shutdown(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_NSIMSGBIFFMANAGER \
  NS_METHOD Init(void); \
  NS_METHOD AddServerBiff(nsIMsgIncomingServer *server); \
  NS_METHOD RemoveServerBiff(nsIMsgIncomingServer *server); \
  NS_METHOD ForceBiff(nsIMsgIncomingServer *server); \
  NS_METHOD ForceBiffAll(void); \
  NS_METHOD Shutdown(void); 

/* Use this macro to declare functions that forward the behavior of this interface to another object. */
#define NS_FORWARD_NSIMSGBIFFMANAGER(_to) \
  NS_IMETHOD Init(void) override { return _to Init(); } \
  NS_IMETHOD AddServerBiff(nsIMsgIncomingServer *server) override { return _to AddServerBiff(server); } \
  NS_IMETHOD RemoveServerBiff(nsIMsgIncomingServer *server) override { return _to RemoveServerBiff(server); } \
  NS_IMETHOD ForceBiff(nsIMsgIncomingServer *server) override { return _to ForceBiff(server); } \
  NS_IMETHOD ForceBiffAll(void) override { return _to ForceBiffAll(); } \
  NS_IMETHOD Shutdown(void) override { return _to Shutdown(); } 

/* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
#define NS_FORWARD_SAFE_NSIMSGBIFFMANAGER(_to) \
  NS_IMETHOD Init(void) override { return !_to ? NS_ERROR_NULL_POINTER : _to->Init(); } \
  NS_IMETHOD AddServerBiff(nsIMsgIncomingServer *server) override { return !_to ? NS_ERROR_NULL_POINTER : _to->AddServerBiff(server); } \
  NS_IMETHOD RemoveServerBiff(nsIMsgIncomingServer *server) override { return !_to ? NS_ERROR_NULL_POINTER : _to->RemoveServerBiff(server); } \
  NS_IMETHOD ForceBiff(nsIMsgIncomingServer *server) override { return !_to ? NS_ERROR_NULL_POINTER : _to->ForceBiff(server); } \
  NS_IMETHOD ForceBiffAll(void) override { return !_to ? NS_ERROR_NULL_POINTER : _to->ForceBiffAll(); } \
  NS_IMETHOD Shutdown(void) override { return !_to ? NS_ERROR_NULL_POINTER : _to->Shutdown(); } 

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

/* Header file */
class nsMsgBiffManager : public nsIMsgBiffManager
{
public:
  NS_DECL_ISUPPORTS
  NS_DECL_NSIMSGBIFFMANAGER

  nsMsgBiffManager();

private:
  ~nsMsgBiffManager();

protected:
  /* additional members */
};

/* Implementation file */
NS_IMPL_ISUPPORTS(nsMsgBiffManager, nsIMsgBiffManager)

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

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

/* void init (); */
NS_IMETHODIMP nsMsgBiffManager::Init()
{
    return NS_ERROR_NOT_IMPLEMENTED;
}

/* void addServerBiff (in nsIMsgIncomingServer server); */
NS_IMETHODIMP nsMsgBiffManager::AddServerBiff(nsIMsgIncomingServer *server)
{
    return NS_ERROR_NOT_IMPLEMENTED;
}

/* void removeServerBiff (in nsIMsgIncomingServer server); */
NS_IMETHODIMP nsMsgBiffManager::RemoveServerBiff(nsIMsgIncomingServer *server)
{
    return NS_ERROR_NOT_IMPLEMENTED;
}

/* void forceBiff (in nsIMsgIncomingServer server); */
NS_IMETHODIMP nsMsgBiffManager::ForceBiff(nsIMsgIncomingServer *server)
{
    return NS_ERROR_NOT_IMPLEMENTED;
}

/* void forceBiffAll (); */
NS_IMETHODIMP nsMsgBiffManager::ForceBiffAll()
{
    return NS_ERROR_NOT_IMPLEMENTED;
}

/* void shutdown (); */
NS_IMETHODIMP nsMsgBiffManager::Shutdown()
{
    return NS_ERROR_NOT_IMPLEMENTED;
}

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


#endif /* __gen_nsIMsgBiffManager_h__ */