This file is indexed.

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

#ifndef __gen_msgIOverride_h__
#define __gen_msgIOverride_h__


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

#ifndef __gen_msgIDelegateList_h__
#include "msgIDelegateList.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:    msgIOverride */
#define MSGIOVERRIDE_IID_STR "68075269-8bbd-4a09-ac04-3241bf44f633"

#define MSGIOVERRIDE_IID \
  {0x68075269, 0x8bbd, 0x4a09, \
    { 0xac, 0x04, 0x32, 0x41, 0xbf, 0x44, 0xf6, 0x33 }}

class NS_NO_VTABLE msgIOverride : public nsISupports {
 public:

  NS_DECLARE_STATIC_IID_ACCESSOR(MSGIOVERRIDE_IID)

  /* attribute msgIDelegateList methodsToDelegate; */
  NS_IMETHOD GetMethodsToDelegate(msgIDelegateList * *aMethodsToDelegate) = 0;
  NS_IMETHOD SetMethodsToDelegate(msgIDelegateList *aMethodsToDelegate) = 0;

  /* attribute nsISupports jsDelegate; */
  NS_IMETHOD GetJsDelegate(nsISupports * *aJsDelegate) = 0;
  NS_IMETHOD SetJsDelegate(nsISupports *aJsDelegate) = 0;

  /* readonly attribute nsISupports cppBase; */
  NS_IMETHOD GetCppBase(nsISupports * *aCppBase) = 0;

};

  NS_DEFINE_STATIC_IID_ACCESSOR(msgIOverride, MSGIOVERRIDE_IID)

/* Use this macro when declaring classes that implement this interface. */
#define NS_DECL_MSGIOVERRIDE \
  NS_IMETHOD GetMethodsToDelegate(msgIDelegateList * *aMethodsToDelegate) override; \
  NS_IMETHOD SetMethodsToDelegate(msgIDelegateList *aMethodsToDelegate) override; \
  NS_IMETHOD GetJsDelegate(nsISupports * *aJsDelegate) override; \
  NS_IMETHOD SetJsDelegate(nsISupports *aJsDelegate) override; \
  NS_IMETHOD GetCppBase(nsISupports * *aCppBase) 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_MSGIOVERRIDE \
  NS_METHOD GetMethodsToDelegate(msgIDelegateList * *aMethodsToDelegate); \
  NS_METHOD SetMethodsToDelegate(msgIDelegateList *aMethodsToDelegate); \
  NS_METHOD GetJsDelegate(nsISupports * *aJsDelegate); \
  NS_METHOD SetJsDelegate(nsISupports *aJsDelegate); \
  NS_METHOD GetCppBase(nsISupports * *aCppBase); 

/* Use this macro to declare functions that forward the behavior of this interface to another object. */
#define NS_FORWARD_MSGIOVERRIDE(_to) \
  NS_IMETHOD GetMethodsToDelegate(msgIDelegateList * *aMethodsToDelegate) override { return _to GetMethodsToDelegate(aMethodsToDelegate); } \
  NS_IMETHOD SetMethodsToDelegate(msgIDelegateList *aMethodsToDelegate) override { return _to SetMethodsToDelegate(aMethodsToDelegate); } \
  NS_IMETHOD GetJsDelegate(nsISupports * *aJsDelegate) override { return _to GetJsDelegate(aJsDelegate); } \
  NS_IMETHOD SetJsDelegate(nsISupports *aJsDelegate) override { return _to SetJsDelegate(aJsDelegate); } \
  NS_IMETHOD GetCppBase(nsISupports * *aCppBase) override { return _to GetCppBase(aCppBase); } 

/* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
#define NS_FORWARD_SAFE_MSGIOVERRIDE(_to) \
  NS_IMETHOD GetMethodsToDelegate(msgIDelegateList * *aMethodsToDelegate) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetMethodsToDelegate(aMethodsToDelegate); } \
  NS_IMETHOD SetMethodsToDelegate(msgIDelegateList *aMethodsToDelegate) override { return !_to ? NS_ERROR_NULL_POINTER : _to->SetMethodsToDelegate(aMethodsToDelegate); } \
  NS_IMETHOD GetJsDelegate(nsISupports * *aJsDelegate) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetJsDelegate(aJsDelegate); } \
  NS_IMETHOD SetJsDelegate(nsISupports *aJsDelegate) override { return !_to ? NS_ERROR_NULL_POINTER : _to->SetJsDelegate(aJsDelegate); } \
  NS_IMETHOD GetCppBase(nsISupports * *aCppBase) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetCppBase(aCppBase); } 

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

/* Header file */
class _MYCLASS_ : public msgIOverride
{
public:
  NS_DECL_ISUPPORTS
  NS_DECL_MSGIOVERRIDE

  _MYCLASS_();

private:
  ~_MYCLASS_();

protected:
  /* additional members */
};

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

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

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

/* attribute msgIDelegateList methodsToDelegate; */
NS_IMETHODIMP _MYCLASS_::GetMethodsToDelegate(msgIDelegateList * *aMethodsToDelegate)
{
    return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP _MYCLASS_::SetMethodsToDelegate(msgIDelegateList *aMethodsToDelegate)
{
    return NS_ERROR_NOT_IMPLEMENTED;
}

/* attribute nsISupports jsDelegate; */
NS_IMETHODIMP _MYCLASS_::GetJsDelegate(nsISupports * *aJsDelegate)
{
    return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP _MYCLASS_::SetJsDelegate(nsISupports *aJsDelegate)
{
    return NS_ERROR_NOT_IMPLEMENTED;
}

/* readonly attribute nsISupports cppBase; */
NS_IMETHODIMP _MYCLASS_::GetCppBase(nsISupports * *aCppBase)
{
    return NS_ERROR_NOT_IMPLEMENTED;
}

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


#endif /* __gen_msgIOverride_h__ */