/usr/include/thunderbird/nsIDOMNavigatorUserMedia.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 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 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 | /*
* DO NOT EDIT. THIS FILE IS GENERATED FROM ../../../dist/idl/nsIDOMNavigatorUserMedia.idl
*/
#ifndef __gen_nsIDOMNavigatorUserMedia_h__
#define __gen_nsIDOMNavigatorUserMedia_h__
#ifndef __gen_nsISupports_h__
#include "nsISupports.h"
#endif
#ifndef __gen_nsIVariant_h__
#include "nsIVariant.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: nsIMediaDevice */
#define NS_IMEDIADEVICE_IID_STR "ba3b2e08-1c07-4cd3-8822-f4d7e35ff2ae"
#define NS_IMEDIADEVICE_IID \
{0xba3b2e08, 0x1c07, 0x4cd3, \
{ 0x88, 0x22, 0xf4, 0xd7, 0xe3, 0x5f, 0xf2, 0xae }}
class NS_NO_VTABLE nsIMediaDevice : public nsISupports {
public:
NS_DECLARE_STATIC_IID_ACCESSOR(NS_IMEDIADEVICE_IID)
/* readonly attribute DOMString type; */
NS_IMETHOD GetType(nsAString & aType) = 0;
/* readonly attribute DOMString name; */
NS_IMETHOD GetName(nsAString & aName) = 0;
/* readonly attribute DOMString id; */
NS_IMETHOD GetId(nsAString & aId) = 0;
/* readonly attribute DOMString mediaSource; */
NS_IMETHOD GetMediaSource(nsAString & aMediaSource) = 0;
/* readonly attribute DOMString rawId; */
NS_IMETHOD GetRawId(nsAString & aRawId) = 0;
/* readonly attribute boolean scary; */
NS_IMETHOD GetScary(bool *aScary) = 0;
};
NS_DEFINE_STATIC_IID_ACCESSOR(nsIMediaDevice, NS_IMEDIADEVICE_IID)
/* Use this macro when declaring classes that implement this interface. */
#define NS_DECL_NSIMEDIADEVICE \
NS_IMETHOD GetType(nsAString & aType) override; \
NS_IMETHOD GetName(nsAString & aName) override; \
NS_IMETHOD GetId(nsAString & aId) override; \
NS_IMETHOD GetMediaSource(nsAString & aMediaSource) override; \
NS_IMETHOD GetRawId(nsAString & aRawId) override; \
NS_IMETHOD GetScary(bool *aScary) 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_NSIMEDIADEVICE \
NS_METHOD GetType(nsAString & aType); \
NS_METHOD GetName(nsAString & aName); \
NS_METHOD GetId(nsAString & aId); \
NS_METHOD GetMediaSource(nsAString & aMediaSource); \
NS_METHOD GetRawId(nsAString & aRawId); \
NS_METHOD GetScary(bool *aScary);
/* Use this macro to declare functions that forward the behavior of this interface to another object. */
#define NS_FORWARD_NSIMEDIADEVICE(_to) \
NS_IMETHOD GetType(nsAString & aType) override { return _to GetType(aType); } \
NS_IMETHOD GetName(nsAString & aName) override { return _to GetName(aName); } \
NS_IMETHOD GetId(nsAString & aId) override { return _to GetId(aId); } \
NS_IMETHOD GetMediaSource(nsAString & aMediaSource) override { return _to GetMediaSource(aMediaSource); } \
NS_IMETHOD GetRawId(nsAString & aRawId) override { return _to GetRawId(aRawId); } \
NS_IMETHOD GetScary(bool *aScary) override { return _to GetScary(aScary); }
/* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
#define NS_FORWARD_SAFE_NSIMEDIADEVICE(_to) \
NS_IMETHOD GetType(nsAString & aType) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetType(aType); } \
NS_IMETHOD GetName(nsAString & aName) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetName(aName); } \
NS_IMETHOD GetId(nsAString & aId) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetId(aId); } \
NS_IMETHOD GetMediaSource(nsAString & aMediaSource) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetMediaSource(aMediaSource); } \
NS_IMETHOD GetRawId(nsAString & aRawId) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetRawId(aRawId); } \
NS_IMETHOD GetScary(bool *aScary) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetScary(aScary); }
#if 0
/* Use the code below as a template for the implementation class for this interface. */
/* Header file */
class nsMediaDevice : public nsIMediaDevice
{
public:
NS_DECL_ISUPPORTS
NS_DECL_NSIMEDIADEVICE
nsMediaDevice();
private:
~nsMediaDevice();
protected:
/* additional members */
};
/* Implementation file */
NS_IMPL_ISUPPORTS(nsMediaDevice, nsIMediaDevice)
nsMediaDevice::nsMediaDevice()
{
/* member initializers and constructor code */
}
nsMediaDevice::~nsMediaDevice()
{
/* destructor code */
}
/* readonly attribute DOMString type; */
NS_IMETHODIMP nsMediaDevice::GetType(nsAString & aType)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* readonly attribute DOMString name; */
NS_IMETHODIMP nsMediaDevice::GetName(nsAString & aName)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* readonly attribute DOMString id; */
NS_IMETHODIMP nsMediaDevice::GetId(nsAString & aId)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* readonly attribute DOMString mediaSource; */
NS_IMETHODIMP nsMediaDevice::GetMediaSource(nsAString & aMediaSource)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* readonly attribute DOMString rawId; */
NS_IMETHODIMP nsMediaDevice::GetRawId(nsAString & aRawId)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* readonly attribute boolean scary; */
NS_IMETHODIMP nsMediaDevice::GetScary(bool *aScary)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* End of implementation class template. */
#endif
/* starting interface: nsIGetUserMediaDevicesSuccessCallback */
#define NS_IGETUSERMEDIADEVICESSUCCESSCALLBACK_IID_STR "24544878-d35e-4962-8c5f-fb84e97bdfee"
#define NS_IGETUSERMEDIADEVICESSUCCESSCALLBACK_IID \
{0x24544878, 0xd35e, 0x4962, \
{ 0x8c, 0x5f, 0xfb, 0x84, 0xe9, 0x7b, 0xdf, 0xee }}
class NS_NO_VTABLE nsIGetUserMediaDevicesSuccessCallback : public nsISupports {
public:
NS_DECLARE_STATIC_IID_ACCESSOR(NS_IGETUSERMEDIADEVICESSUCCESSCALLBACK_IID)
/* void onSuccess (in nsIVariant devices); */
NS_IMETHOD OnSuccess(nsIVariant *devices) = 0;
};
NS_DEFINE_STATIC_IID_ACCESSOR(nsIGetUserMediaDevicesSuccessCallback, NS_IGETUSERMEDIADEVICESSUCCESSCALLBACK_IID)
/* Use this macro when declaring classes that implement this interface. */
#define NS_DECL_NSIGETUSERMEDIADEVICESSUCCESSCALLBACK \
NS_IMETHOD OnSuccess(nsIVariant *devices) 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_NSIGETUSERMEDIADEVICESSUCCESSCALLBACK \
NS_METHOD OnSuccess(nsIVariant *devices);
/* Use this macro to declare functions that forward the behavior of this interface to another object. */
#define NS_FORWARD_NSIGETUSERMEDIADEVICESSUCCESSCALLBACK(_to) \
NS_IMETHOD OnSuccess(nsIVariant *devices) override { return _to OnSuccess(devices); }
/* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
#define NS_FORWARD_SAFE_NSIGETUSERMEDIADEVICESSUCCESSCALLBACK(_to) \
NS_IMETHOD OnSuccess(nsIVariant *devices) override { return !_to ? NS_ERROR_NULL_POINTER : _to->OnSuccess(devices); }
#if 0
/* Use the code below as a template for the implementation class for this interface. */
/* Header file */
class nsGetUserMediaDevicesSuccessCallback : public nsIGetUserMediaDevicesSuccessCallback
{
public:
NS_DECL_ISUPPORTS
NS_DECL_NSIGETUSERMEDIADEVICESSUCCESSCALLBACK
nsGetUserMediaDevicesSuccessCallback();
private:
~nsGetUserMediaDevicesSuccessCallback();
protected:
/* additional members */
};
/* Implementation file */
NS_IMPL_ISUPPORTS(nsGetUserMediaDevicesSuccessCallback, nsIGetUserMediaDevicesSuccessCallback)
nsGetUserMediaDevicesSuccessCallback::nsGetUserMediaDevicesSuccessCallback()
{
/* member initializers and constructor code */
}
nsGetUserMediaDevicesSuccessCallback::~nsGetUserMediaDevicesSuccessCallback()
{
/* destructor code */
}
/* void onSuccess (in nsIVariant devices); */
NS_IMETHODIMP nsGetUserMediaDevicesSuccessCallback::OnSuccess(nsIVariant *devices)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* End of implementation class template. */
#endif
/* starting interface: nsIDOMGetUserMediaSuccessCallback */
#define NS_IDOMGETUSERMEDIASUCCESSCALLBACK_IID_STR "f2a144fc-3534-4761-8c5d-989ae720f89a"
#define NS_IDOMGETUSERMEDIASUCCESSCALLBACK_IID \
{0xf2a144fc, 0x3534, 0x4761, \
{ 0x8c, 0x5d, 0x98, 0x9a, 0xe7, 0x20, 0xf8, 0x9a }}
class NS_NO_VTABLE nsIDOMGetUserMediaSuccessCallback : public nsISupports {
public:
NS_DECLARE_STATIC_IID_ACCESSOR(NS_IDOMGETUSERMEDIASUCCESSCALLBACK_IID)
/* void onSuccess (in nsISupports value); */
NS_IMETHOD OnSuccess(nsISupports *value) = 0;
};
NS_DEFINE_STATIC_IID_ACCESSOR(nsIDOMGetUserMediaSuccessCallback, NS_IDOMGETUSERMEDIASUCCESSCALLBACK_IID)
/* Use this macro when declaring classes that implement this interface. */
#define NS_DECL_NSIDOMGETUSERMEDIASUCCESSCALLBACK \
NS_IMETHOD OnSuccess(nsISupports *value) 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_NSIDOMGETUSERMEDIASUCCESSCALLBACK \
NS_METHOD OnSuccess(nsISupports *value);
/* Use this macro to declare functions that forward the behavior of this interface to another object. */
#define NS_FORWARD_NSIDOMGETUSERMEDIASUCCESSCALLBACK(_to) \
NS_IMETHOD OnSuccess(nsISupports *value) override { return _to OnSuccess(value); }
/* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
#define NS_FORWARD_SAFE_NSIDOMGETUSERMEDIASUCCESSCALLBACK(_to) \
NS_IMETHOD OnSuccess(nsISupports *value) override { return !_to ? NS_ERROR_NULL_POINTER : _to->OnSuccess(value); }
#if 0
/* Use the code below as a template for the implementation class for this interface. */
/* Header file */
class nsDOMGetUserMediaSuccessCallback : public nsIDOMGetUserMediaSuccessCallback
{
public:
NS_DECL_ISUPPORTS
NS_DECL_NSIDOMGETUSERMEDIASUCCESSCALLBACK
nsDOMGetUserMediaSuccessCallback();
private:
~nsDOMGetUserMediaSuccessCallback();
protected:
/* additional members */
};
/* Implementation file */
NS_IMPL_ISUPPORTS(nsDOMGetUserMediaSuccessCallback, nsIDOMGetUserMediaSuccessCallback)
nsDOMGetUserMediaSuccessCallback::nsDOMGetUserMediaSuccessCallback()
{
/* member initializers and constructor code */
}
nsDOMGetUserMediaSuccessCallback::~nsDOMGetUserMediaSuccessCallback()
{
/* destructor code */
}
/* void onSuccess (in nsISupports value); */
NS_IMETHODIMP nsDOMGetUserMediaSuccessCallback::OnSuccess(nsISupports *value)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* End of implementation class template. */
#endif
/* starting interface: nsIDOMGetUserMediaErrorCallback */
#define NS_IDOMGETUSERMEDIAERRORCALLBACK_IID_STR "39e96c61-2636-4f0e-918e-9bb64276492a"
#define NS_IDOMGETUSERMEDIAERRORCALLBACK_IID \
{0x39e96c61, 0x2636, 0x4f0e, \
{ 0x91, 0x8e, 0x9b, 0xb6, 0x42, 0x76, 0x49, 0x2a }}
class NS_NO_VTABLE nsIDOMGetUserMediaErrorCallback : public nsISupports {
public:
NS_DECLARE_STATIC_IID_ACCESSOR(NS_IDOMGETUSERMEDIAERRORCALLBACK_IID)
/* void onError (in nsISupports error); */
NS_IMETHOD OnError(nsISupports *error) = 0;
};
NS_DEFINE_STATIC_IID_ACCESSOR(nsIDOMGetUserMediaErrorCallback, NS_IDOMGETUSERMEDIAERRORCALLBACK_IID)
/* Use this macro when declaring classes that implement this interface. */
#define NS_DECL_NSIDOMGETUSERMEDIAERRORCALLBACK \
NS_IMETHOD OnError(nsISupports *error) 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_NSIDOMGETUSERMEDIAERRORCALLBACK \
NS_METHOD OnError(nsISupports *error);
/* Use this macro to declare functions that forward the behavior of this interface to another object. */
#define NS_FORWARD_NSIDOMGETUSERMEDIAERRORCALLBACK(_to) \
NS_IMETHOD OnError(nsISupports *error) override { return _to OnError(error); }
/* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
#define NS_FORWARD_SAFE_NSIDOMGETUSERMEDIAERRORCALLBACK(_to) \
NS_IMETHOD OnError(nsISupports *error) override { return !_to ? NS_ERROR_NULL_POINTER : _to->OnError(error); }
#if 0
/* Use the code below as a template for the implementation class for this interface. */
/* Header file */
class nsDOMGetUserMediaErrorCallback : public nsIDOMGetUserMediaErrorCallback
{
public:
NS_DECL_ISUPPORTS
NS_DECL_NSIDOMGETUSERMEDIAERRORCALLBACK
nsDOMGetUserMediaErrorCallback();
private:
~nsDOMGetUserMediaErrorCallback();
protected:
/* additional members */
};
/* Implementation file */
NS_IMPL_ISUPPORTS(nsDOMGetUserMediaErrorCallback, nsIDOMGetUserMediaErrorCallback)
nsDOMGetUserMediaErrorCallback::nsDOMGetUserMediaErrorCallback()
{
/* member initializers and constructor code */
}
nsDOMGetUserMediaErrorCallback::~nsDOMGetUserMediaErrorCallback()
{
/* destructor code */
}
/* void onError (in nsISupports error); */
NS_IMETHODIMP nsDOMGetUserMediaErrorCallback::OnError(nsISupports *error)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* End of implementation class template. */
#endif
#endif /* __gen_nsIDOMNavigatorUserMedia_h__ */
|