This file is indexed.

/usr/include/thunderbird-11.0.1/nsIDOMHashChangeEvent.h is in thunderbird-dev 11.0.1+build1-0ubuntu2.

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
/*
 * DO NOT EDIT.  THIS FILE IS GENERATED FROM /build/buildd/thunderbird-11.0.1+build1/build-tree/mozilla/mozilla/dom/interfaces/events/nsIDOMHashChangeEvent.idl
 */

#ifndef __gen_nsIDOMHashChangeEvent_h__
#define __gen_nsIDOMHashChangeEvent_h__


#ifndef __gen_nsIDOMEvent_h__
#include "nsIDOMEvent.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:    nsIDOMHashChangeEvent */
#define NS_IDOMHASHCHANGEEVENT_IID_STR "9fc4785c-b769-40e5-8f79-586e01413afd"

#define NS_IDOMHASHCHANGEEVENT_IID \
  {0x9fc4785c, 0xb769, 0x40e5, \
    { 0x8f, 0x79, 0x58, 0x6e, 0x01, 0x41, 0x3a, 0xfd }}

class NS_NO_VTABLE NS_SCRIPTABLE nsIDOMHashChangeEvent : public nsIDOMEvent {
 public: 

  NS_DECLARE_STATIC_IID_ACCESSOR(NS_IDOMHASHCHANGEEVENT_IID)

  /* readonly attribute DOMString oldURL; */
  NS_SCRIPTABLE NS_IMETHOD GetOldURL(nsAString & aOldURL) = 0;

  /* readonly attribute DOMString newURL; */
  NS_SCRIPTABLE NS_IMETHOD GetNewURL(nsAString & aNewURL) = 0;

  /* void initHashChangeEvent (in DOMString typeArg, in boolean canBubbleArg, in boolean cancelableArg, in DOMString oldURLArg, in DOMString newURLArg); */
  NS_SCRIPTABLE NS_IMETHOD InitHashChangeEvent(const nsAString & typeArg, bool canBubbleArg, bool cancelableArg, const nsAString & oldURLArg, const nsAString & newURLArg) = 0;

};

  NS_DEFINE_STATIC_IID_ACCESSOR(nsIDOMHashChangeEvent, NS_IDOMHASHCHANGEEVENT_IID)

/* Use this macro when declaring classes that implement this interface. */
#define NS_DECL_NSIDOMHASHCHANGEEVENT \
  NS_SCRIPTABLE NS_IMETHOD GetOldURL(nsAString & aOldURL); \
  NS_SCRIPTABLE NS_IMETHOD GetNewURL(nsAString & aNewURL); \
  NS_SCRIPTABLE NS_IMETHOD InitHashChangeEvent(const nsAString & typeArg, bool canBubbleArg, bool cancelableArg, const nsAString & oldURLArg, const nsAString & newURLArg); 

/* Use this macro to declare functions that forward the behavior of this interface to another object. */
#define NS_FORWARD_NSIDOMHASHCHANGEEVENT(_to) \
  NS_SCRIPTABLE NS_IMETHOD GetOldURL(nsAString & aOldURL) { return _to GetOldURL(aOldURL); } \
  NS_SCRIPTABLE NS_IMETHOD GetNewURL(nsAString & aNewURL) { return _to GetNewURL(aNewURL); } \
  NS_SCRIPTABLE NS_IMETHOD InitHashChangeEvent(const nsAString & typeArg, bool canBubbleArg, bool cancelableArg, const nsAString & oldURLArg, const nsAString & newURLArg) { return _to InitHashChangeEvent(typeArg, canBubbleArg, cancelableArg, oldURLArg, newURLArg); } 

/* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
#define NS_FORWARD_SAFE_NSIDOMHASHCHANGEEVENT(_to) \
  NS_SCRIPTABLE NS_IMETHOD GetOldURL(nsAString & aOldURL) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetOldURL(aOldURL); } \
  NS_SCRIPTABLE NS_IMETHOD GetNewURL(nsAString & aNewURL) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetNewURL(aNewURL); } \
  NS_SCRIPTABLE NS_IMETHOD InitHashChangeEvent(const nsAString & typeArg, bool canBubbleArg, bool cancelableArg, const nsAString & oldURLArg, const nsAString & newURLArg) { return !_to ? NS_ERROR_NULL_POINTER : _to->InitHashChangeEvent(typeArg, canBubbleArg, cancelableArg, oldURLArg, newURLArg); } 

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

/* Header file */
class nsDOMHashChangeEvent : public nsIDOMHashChangeEvent
{
public:
  NS_DECL_ISUPPORTS
  NS_DECL_NSIDOMHASHCHANGEEVENT

  nsDOMHashChangeEvent();

private:
  ~nsDOMHashChangeEvent();

protected:
  /* additional members */
};

/* Implementation file */
NS_IMPL_ISUPPORTS1(nsDOMHashChangeEvent, nsIDOMHashChangeEvent)

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

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

/* readonly attribute DOMString oldURL; */
NS_IMETHODIMP nsDOMHashChangeEvent::GetOldURL(nsAString & aOldURL)
{
    return NS_ERROR_NOT_IMPLEMENTED;
}

/* readonly attribute DOMString newURL; */
NS_IMETHODIMP nsDOMHashChangeEvent::GetNewURL(nsAString & aNewURL)
{
    return NS_ERROR_NOT_IMPLEMENTED;
}

/* void initHashChangeEvent (in DOMString typeArg, in boolean canBubbleArg, in boolean cancelableArg, in DOMString oldURLArg, in DOMString newURLArg); */
NS_IMETHODIMP nsDOMHashChangeEvent::InitHashChangeEvent(const nsAString & typeArg, bool canBubbleArg, bool cancelableArg, const nsAString & oldURLArg, const nsAString & newURLArg)
{
    return NS_ERROR_NOT_IMPLEMENTED;
}

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


/* starting interface:    nsIHashChangeEventInit */
#define NS_IHASHCHANGEEVENTINIT_IID_STR "e56881c1-3714-45bb-bca3-1453ea24ee90"

#define NS_IHASHCHANGEEVENTINIT_IID \
  {0xe56881c1, 0x3714, 0x45bb, \
    { 0xbc, 0xa3, 0x14, 0x53, 0xea, 0x24, 0xee, 0x90 }}

class NS_NO_VTABLE NS_SCRIPTABLE nsIHashChangeEventInit : public nsIEventInit {
 public: 

  NS_DECLARE_STATIC_IID_ACCESSOR(NS_IHASHCHANGEEVENTINIT_IID)

  /* attribute DOMString oldURL; */
  NS_SCRIPTABLE NS_IMETHOD GetOldURL(nsAString & aOldURL) = 0;
  NS_SCRIPTABLE NS_IMETHOD SetOldURL(const nsAString & aOldURL) = 0;

  /* attribute DOMString newURL; */
  NS_SCRIPTABLE NS_IMETHOD GetNewURL(nsAString & aNewURL) = 0;
  NS_SCRIPTABLE NS_IMETHOD SetNewURL(const nsAString & aNewURL) = 0;

};

  NS_DEFINE_STATIC_IID_ACCESSOR(nsIHashChangeEventInit, NS_IHASHCHANGEEVENTINIT_IID)

/* Use this macro when declaring classes that implement this interface. */
#define NS_DECL_NSIHASHCHANGEEVENTINIT \
  NS_SCRIPTABLE NS_IMETHOD GetOldURL(nsAString & aOldURL); \
  NS_SCRIPTABLE NS_IMETHOD SetOldURL(const nsAString & aOldURL); \
  NS_SCRIPTABLE NS_IMETHOD GetNewURL(nsAString & aNewURL); \
  NS_SCRIPTABLE NS_IMETHOD SetNewURL(const nsAString & aNewURL); 

/* Use this macro to declare functions that forward the behavior of this interface to another object. */
#define NS_FORWARD_NSIHASHCHANGEEVENTINIT(_to) \
  NS_SCRIPTABLE NS_IMETHOD GetOldURL(nsAString & aOldURL) { return _to GetOldURL(aOldURL); } \
  NS_SCRIPTABLE NS_IMETHOD SetOldURL(const nsAString & aOldURL) { return _to SetOldURL(aOldURL); } \
  NS_SCRIPTABLE NS_IMETHOD GetNewURL(nsAString & aNewURL) { return _to GetNewURL(aNewURL); } \
  NS_SCRIPTABLE NS_IMETHOD SetNewURL(const nsAString & aNewURL) { return _to SetNewURL(aNewURL); } 

/* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
#define NS_FORWARD_SAFE_NSIHASHCHANGEEVENTINIT(_to) \
  NS_SCRIPTABLE NS_IMETHOD GetOldURL(nsAString & aOldURL) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetOldURL(aOldURL); } \
  NS_SCRIPTABLE NS_IMETHOD SetOldURL(const nsAString & aOldURL) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetOldURL(aOldURL); } \
  NS_SCRIPTABLE NS_IMETHOD GetNewURL(nsAString & aNewURL) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetNewURL(aNewURL); } \
  NS_SCRIPTABLE NS_IMETHOD SetNewURL(const nsAString & aNewURL) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetNewURL(aNewURL); } 

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

/* Header file */
class nsHashChangeEventInit : public nsIHashChangeEventInit
{
public:
  NS_DECL_ISUPPORTS
  NS_DECL_NSIHASHCHANGEEVENTINIT

  nsHashChangeEventInit();

private:
  ~nsHashChangeEventInit();

protected:
  /* additional members */
};

/* Implementation file */
NS_IMPL_ISUPPORTS1(nsHashChangeEventInit, nsIHashChangeEventInit)

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

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

/* attribute DOMString oldURL; */
NS_IMETHODIMP nsHashChangeEventInit::GetOldURL(nsAString & aOldURL)
{
    return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsHashChangeEventInit::SetOldURL(const nsAString & aOldURL)
{
    return NS_ERROR_NOT_IMPLEMENTED;
}

/* attribute DOMString newURL; */
NS_IMETHODIMP nsHashChangeEventInit::GetNewURL(nsAString & aNewURL)
{
    return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsHashChangeEventInit::SetNewURL(const nsAString & aNewURL)
{
    return NS_ERROR_NOT_IMPLEMENTED;
}

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


#endif /* __gen_nsIDOMHashChangeEvent_h__ */