This file is indexed.

/usr/include/firefox-esr-52/nsIPresentationDeviceProvider.h is in firefox-esr-dev 52.8.1esr-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
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
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
/*
 * DO NOT EDIT.  THIS FILE IS GENERATED FROM ../../../dist/idl/nsIPresentationDeviceProvider.idl
 */

#ifndef __gen_nsIPresentationDeviceProvider_h__
#define __gen_nsIPresentationDeviceProvider_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 nsIPresentationDevice; /* forward declaration */

class nsIPresentationControlChannel; /* forward declaration */

#define PRESENTATION_DEVICE_PROVIDER_CATEGORY "presentation-device-provider"

/* starting interface:    nsIPresentationDeviceListener */
#define NS_IPRESENTATIONDEVICELISTENER_IID_STR "46fd372b-2e40-4179-9b36-0478d141e440"

#define NS_IPRESENTATIONDEVICELISTENER_IID \
  {0x46fd372b, 0x2e40, 0x4179, \
    { 0x9b, 0x36, 0x04, 0x78, 0xd1, 0x41, 0xe4, 0x40 }}

class NS_NO_VTABLE nsIPresentationDeviceListener : public nsISupports {
 public:

  NS_DECLARE_STATIC_IID_ACCESSOR(NS_IPRESENTATIONDEVICELISTENER_IID)

  /* void addDevice (in nsIPresentationDevice device); */
  NS_IMETHOD AddDevice(nsIPresentationDevice *device) = 0;

  /* void removeDevice (in nsIPresentationDevice device); */
  NS_IMETHOD RemoveDevice(nsIPresentationDevice *device) = 0;

  /* void updateDevice (in nsIPresentationDevice device); */
  NS_IMETHOD UpdateDevice(nsIPresentationDevice *device) = 0;

  /* void onSessionRequest (in nsIPresentationDevice device, in DOMString url, in DOMString presentationId, in nsIPresentationControlChannel controlChannel); */
  NS_IMETHOD OnSessionRequest(nsIPresentationDevice *device, const nsAString & url, const nsAString & presentationId, nsIPresentationControlChannel *controlChannel) = 0;

  /* void onTerminateRequest (in nsIPresentationDevice device, in DOMString presentationId, in nsIPresentationControlChannel controlChannel, in boolean aIsFromReceiver); */
  NS_IMETHOD OnTerminateRequest(nsIPresentationDevice *device, const nsAString & presentationId, nsIPresentationControlChannel *controlChannel, bool aIsFromReceiver) = 0;

  /* void onReconnectRequest (in nsIPresentationDevice device, in DOMString url, in DOMString presentationId, in nsIPresentationControlChannel controlChannel); */
  NS_IMETHOD OnReconnectRequest(nsIPresentationDevice *device, const nsAString & url, const nsAString & presentationId, nsIPresentationControlChannel *controlChannel) = 0;

};

  NS_DEFINE_STATIC_IID_ACCESSOR(nsIPresentationDeviceListener, NS_IPRESENTATIONDEVICELISTENER_IID)

/* Use this macro when declaring classes that implement this interface. */
#define NS_DECL_NSIPRESENTATIONDEVICELISTENER \
  NS_IMETHOD AddDevice(nsIPresentationDevice *device) override; \
  NS_IMETHOD RemoveDevice(nsIPresentationDevice *device) override; \
  NS_IMETHOD UpdateDevice(nsIPresentationDevice *device) override; \
  NS_IMETHOD OnSessionRequest(nsIPresentationDevice *device, const nsAString & url, const nsAString & presentationId, nsIPresentationControlChannel *controlChannel) override; \
  NS_IMETHOD OnTerminateRequest(nsIPresentationDevice *device, const nsAString & presentationId, nsIPresentationControlChannel *controlChannel, bool aIsFromReceiver) override; \
  NS_IMETHOD OnReconnectRequest(nsIPresentationDevice *device, const nsAString & url, const nsAString & presentationId, nsIPresentationControlChannel *controlChannel) 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_NSIPRESENTATIONDEVICELISTENER \
  NS_METHOD AddDevice(nsIPresentationDevice *device); \
  NS_METHOD RemoveDevice(nsIPresentationDevice *device); \
  NS_METHOD UpdateDevice(nsIPresentationDevice *device); \
  NS_METHOD OnSessionRequest(nsIPresentationDevice *device, const nsAString & url, const nsAString & presentationId, nsIPresentationControlChannel *controlChannel); \
  NS_METHOD OnTerminateRequest(nsIPresentationDevice *device, const nsAString & presentationId, nsIPresentationControlChannel *controlChannel, bool aIsFromReceiver); \
  NS_METHOD OnReconnectRequest(nsIPresentationDevice *device, const nsAString & url, const nsAString & presentationId, nsIPresentationControlChannel *controlChannel); 

/* Use this macro to declare functions that forward the behavior of this interface to another object. */
#define NS_FORWARD_NSIPRESENTATIONDEVICELISTENER(_to) \
  NS_IMETHOD AddDevice(nsIPresentationDevice *device) override { return _to AddDevice(device); } \
  NS_IMETHOD RemoveDevice(nsIPresentationDevice *device) override { return _to RemoveDevice(device); } \
  NS_IMETHOD UpdateDevice(nsIPresentationDevice *device) override { return _to UpdateDevice(device); } \
  NS_IMETHOD OnSessionRequest(nsIPresentationDevice *device, const nsAString & url, const nsAString & presentationId, nsIPresentationControlChannel *controlChannel) override { return _to OnSessionRequest(device, url, presentationId, controlChannel); } \
  NS_IMETHOD OnTerminateRequest(nsIPresentationDevice *device, const nsAString & presentationId, nsIPresentationControlChannel *controlChannel, bool aIsFromReceiver) override { return _to OnTerminateRequest(device, presentationId, controlChannel, aIsFromReceiver); } \
  NS_IMETHOD OnReconnectRequest(nsIPresentationDevice *device, const nsAString & url, const nsAString & presentationId, nsIPresentationControlChannel *controlChannel) override { return _to OnReconnectRequest(device, url, presentationId, controlChannel); } 

/* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
#define NS_FORWARD_SAFE_NSIPRESENTATIONDEVICELISTENER(_to) \
  NS_IMETHOD AddDevice(nsIPresentationDevice *device) override { return !_to ? NS_ERROR_NULL_POINTER : _to->AddDevice(device); } \
  NS_IMETHOD RemoveDevice(nsIPresentationDevice *device) override { return !_to ? NS_ERROR_NULL_POINTER : _to->RemoveDevice(device); } \
  NS_IMETHOD UpdateDevice(nsIPresentationDevice *device) override { return !_to ? NS_ERROR_NULL_POINTER : _to->UpdateDevice(device); } \
  NS_IMETHOD OnSessionRequest(nsIPresentationDevice *device, const nsAString & url, const nsAString & presentationId, nsIPresentationControlChannel *controlChannel) override { return !_to ? NS_ERROR_NULL_POINTER : _to->OnSessionRequest(device, url, presentationId, controlChannel); } \
  NS_IMETHOD OnTerminateRequest(nsIPresentationDevice *device, const nsAString & presentationId, nsIPresentationControlChannel *controlChannel, bool aIsFromReceiver) override { return !_to ? NS_ERROR_NULL_POINTER : _to->OnTerminateRequest(device, presentationId, controlChannel, aIsFromReceiver); } \
  NS_IMETHOD OnReconnectRequest(nsIPresentationDevice *device, const nsAString & url, const nsAString & presentationId, nsIPresentationControlChannel *controlChannel) override { return !_to ? NS_ERROR_NULL_POINTER : _to->OnReconnectRequest(device, url, presentationId, controlChannel); } 

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

/* Header file */
class nsPresentationDeviceListener : public nsIPresentationDeviceListener
{
public:
  NS_DECL_ISUPPORTS
  NS_DECL_NSIPRESENTATIONDEVICELISTENER

  nsPresentationDeviceListener();

private:
  ~nsPresentationDeviceListener();

protected:
  /* additional members */
};

/* Implementation file */
NS_IMPL_ISUPPORTS(nsPresentationDeviceListener, nsIPresentationDeviceListener)

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

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

/* void addDevice (in nsIPresentationDevice device); */
NS_IMETHODIMP nsPresentationDeviceListener::AddDevice(nsIPresentationDevice *device)
{
    return NS_ERROR_NOT_IMPLEMENTED;
}

/* void removeDevice (in nsIPresentationDevice device); */
NS_IMETHODIMP nsPresentationDeviceListener::RemoveDevice(nsIPresentationDevice *device)
{
    return NS_ERROR_NOT_IMPLEMENTED;
}

/* void updateDevice (in nsIPresentationDevice device); */
NS_IMETHODIMP nsPresentationDeviceListener::UpdateDevice(nsIPresentationDevice *device)
{
    return NS_ERROR_NOT_IMPLEMENTED;
}

/* void onSessionRequest (in nsIPresentationDevice device, in DOMString url, in DOMString presentationId, in nsIPresentationControlChannel controlChannel); */
NS_IMETHODIMP nsPresentationDeviceListener::OnSessionRequest(nsIPresentationDevice *device, const nsAString & url, const nsAString & presentationId, nsIPresentationControlChannel *controlChannel)
{
    return NS_ERROR_NOT_IMPLEMENTED;
}

/* void onTerminateRequest (in nsIPresentationDevice device, in DOMString presentationId, in nsIPresentationControlChannel controlChannel, in boolean aIsFromReceiver); */
NS_IMETHODIMP nsPresentationDeviceListener::OnTerminateRequest(nsIPresentationDevice *device, const nsAString & presentationId, nsIPresentationControlChannel *controlChannel, bool aIsFromReceiver)
{
    return NS_ERROR_NOT_IMPLEMENTED;
}

/* void onReconnectRequest (in nsIPresentationDevice device, in DOMString url, in DOMString presentationId, in nsIPresentationControlChannel controlChannel); */
NS_IMETHODIMP nsPresentationDeviceListener::OnReconnectRequest(nsIPresentationDevice *device, const nsAString & url, const nsAString & presentationId, nsIPresentationControlChannel *controlChannel)
{
    return NS_ERROR_NOT_IMPLEMENTED;
}

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


/* starting interface:    nsIPresentationDeviceProvider */
#define NS_IPRESENTATIONDEVICEPROVIDER_IID_STR "3db2578a-0f50-44ad-b01b-28427b71b7bf"

#define NS_IPRESENTATIONDEVICEPROVIDER_IID \
  {0x3db2578a, 0x0f50, 0x44ad, \
    { 0xb0, 0x1b, 0x28, 0x42, 0x7b, 0x71, 0xb7, 0xbf }}

class NS_NO_VTABLE nsIPresentationDeviceProvider : public nsISupports {
 public:

  NS_DECLARE_STATIC_IID_ACCESSOR(NS_IPRESENTATIONDEVICEPROVIDER_IID)

  /* attribute nsIPresentationDeviceListener listener; */
  NS_IMETHOD GetListener(nsIPresentationDeviceListener * *aListener) = 0;
  NS_IMETHOD SetListener(nsIPresentationDeviceListener *aListener) = 0;

  /* void forceDiscovery (); */
  NS_IMETHOD ForceDiscovery(void) = 0;

};

  NS_DEFINE_STATIC_IID_ACCESSOR(nsIPresentationDeviceProvider, NS_IPRESENTATIONDEVICEPROVIDER_IID)

/* Use this macro when declaring classes that implement this interface. */
#define NS_DECL_NSIPRESENTATIONDEVICEPROVIDER \
  NS_IMETHOD GetListener(nsIPresentationDeviceListener * *aListener) override; \
  NS_IMETHOD SetListener(nsIPresentationDeviceListener *aListener) override; \
  NS_IMETHOD ForceDiscovery(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_NSIPRESENTATIONDEVICEPROVIDER \
  NS_METHOD GetListener(nsIPresentationDeviceListener * *aListener); \
  NS_METHOD SetListener(nsIPresentationDeviceListener *aListener); \
  NS_METHOD ForceDiscovery(void); 

/* Use this macro to declare functions that forward the behavior of this interface to another object. */
#define NS_FORWARD_NSIPRESENTATIONDEVICEPROVIDER(_to) \
  NS_IMETHOD GetListener(nsIPresentationDeviceListener * *aListener) override { return _to GetListener(aListener); } \
  NS_IMETHOD SetListener(nsIPresentationDeviceListener *aListener) override { return _to SetListener(aListener); } \
  NS_IMETHOD ForceDiscovery(void) override { return _to ForceDiscovery(); } 

/* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
#define NS_FORWARD_SAFE_NSIPRESENTATIONDEVICEPROVIDER(_to) \
  NS_IMETHOD GetListener(nsIPresentationDeviceListener * *aListener) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetListener(aListener); } \
  NS_IMETHOD SetListener(nsIPresentationDeviceListener *aListener) override { return !_to ? NS_ERROR_NULL_POINTER : _to->SetListener(aListener); } \
  NS_IMETHOD ForceDiscovery(void) override { return !_to ? NS_ERROR_NULL_POINTER : _to->ForceDiscovery(); } 

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

/* Header file */
class nsPresentationDeviceProvider : public nsIPresentationDeviceProvider
{
public:
  NS_DECL_ISUPPORTS
  NS_DECL_NSIPRESENTATIONDEVICEPROVIDER

  nsPresentationDeviceProvider();

private:
  ~nsPresentationDeviceProvider();

protected:
  /* additional members */
};

/* Implementation file */
NS_IMPL_ISUPPORTS(nsPresentationDeviceProvider, nsIPresentationDeviceProvider)

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

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

/* attribute nsIPresentationDeviceListener listener; */
NS_IMETHODIMP nsPresentationDeviceProvider::GetListener(nsIPresentationDeviceListener * *aListener)
{
    return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsPresentationDeviceProvider::SetListener(nsIPresentationDeviceListener *aListener)
{
    return NS_ERROR_NOT_IMPLEMENTED;
}

/* void forceDiscovery (); */
NS_IMETHODIMP nsPresentationDeviceProvider::ForceDiscovery()
{
    return NS_ERROR_NOT_IMPLEMENTED;
}

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


#endif /* __gen_nsIPresentationDeviceProvider_h__ */