/usr/include/thunderbird/nsIMediaManager.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 | /*
* DO NOT EDIT. THIS FILE IS GENERATED FROM ../../../dist/idl/nsIMediaManager.idl
*/
#ifndef __gen_nsIMediaManager_h__
#define __gen_nsIMediaManager_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 nsIArray; /* forward declaration */
class nsIDOMWindow; /* forward declaration */
#define NS_MEDIAMANAGERSERVICE_CID {0xabc622ea, 0x9655, 0x4123, {0x80, 0xd9, 0x22, 0x62, 0x1b, 0xdd, 0x54, 0x65}}
#define MEDIAMANAGERSERVICE_CONTRACTID "@mozilla.org/mediaManagerService;1"
/* starting interface: nsIMediaManagerService */
#define NS_IMEDIAMANAGERSERVICE_IID_STR "24b23e01-33fd-401f-ba25-6e52658750b0"
#define NS_IMEDIAMANAGERSERVICE_IID \
{0x24b23e01, 0x33fd, 0x401f, \
{ 0xba, 0x25, 0x6e, 0x52, 0x65, 0x87, 0x50, 0xb0 }}
class NS_NO_VTABLE nsIMediaManagerService : public nsISupports {
public:
NS_DECLARE_STATIC_IID_ACCESSOR(NS_IMEDIAMANAGERSERVICE_IID)
/* readonly attribute nsIArray activeMediaCaptureWindows; */
NS_IMETHOD GetActiveMediaCaptureWindows(nsIArray * *aActiveMediaCaptureWindows) = 0;
/* void mediaCaptureWindowState (in nsIDOMWindow aWindow, out boolean aVideo, out boolean aAudio, [optional] out boolean aScreenShare, [optional] out boolean aWindowShare, [optional] out boolean aAppShare, [optional] out boolean aBrowserShare); */
NS_IMETHOD MediaCaptureWindowState(nsIDOMWindow *aWindow, bool *aVideo, bool *aAudio, bool *aScreenShare = nullptr, bool *aWindowShare = nullptr, bool *aAppShare = nullptr, bool *aBrowserShare = nullptr) = 0;
/* void sanitizeDeviceIds (in long long sinceWhen); */
NS_IMETHOD SanitizeDeviceIds(int64_t sinceWhen) = 0;
};
NS_DEFINE_STATIC_IID_ACCESSOR(nsIMediaManagerService, NS_IMEDIAMANAGERSERVICE_IID)
/* Use this macro when declaring classes that implement this interface. */
#define NS_DECL_NSIMEDIAMANAGERSERVICE \
NS_IMETHOD GetActiveMediaCaptureWindows(nsIArray * *aActiveMediaCaptureWindows) override; \
NS_IMETHOD MediaCaptureWindowState(nsIDOMWindow *aWindow, bool *aVideo, bool *aAudio, bool *aScreenShare = nullptr, bool *aWindowShare = nullptr, bool *aAppShare = nullptr, bool *aBrowserShare = nullptr) override; \
NS_IMETHOD SanitizeDeviceIds(int64_t sinceWhen) 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_NSIMEDIAMANAGERSERVICE \
NS_METHOD GetActiveMediaCaptureWindows(nsIArray * *aActiveMediaCaptureWindows); \
NS_METHOD MediaCaptureWindowState(nsIDOMWindow *aWindow, bool *aVideo, bool *aAudio, bool *aScreenShare = nullptr, bool *aWindowShare = nullptr, bool *aAppShare = nullptr, bool *aBrowserShare = nullptr); \
NS_METHOD SanitizeDeviceIds(int64_t sinceWhen);
/* Use this macro to declare functions that forward the behavior of this interface to another object. */
#define NS_FORWARD_NSIMEDIAMANAGERSERVICE(_to) \
NS_IMETHOD GetActiveMediaCaptureWindows(nsIArray * *aActiveMediaCaptureWindows) override { return _to GetActiveMediaCaptureWindows(aActiveMediaCaptureWindows); } \
NS_IMETHOD MediaCaptureWindowState(nsIDOMWindow *aWindow, bool *aVideo, bool *aAudio, bool *aScreenShare = nullptr, bool *aWindowShare = nullptr, bool *aAppShare = nullptr, bool *aBrowserShare = nullptr) override { return _to MediaCaptureWindowState(aWindow, aVideo, aAudio, aScreenShare, aWindowShare, aAppShare, aBrowserShare); } \
NS_IMETHOD SanitizeDeviceIds(int64_t sinceWhen) override { return _to SanitizeDeviceIds(sinceWhen); }
/* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
#define NS_FORWARD_SAFE_NSIMEDIAMANAGERSERVICE(_to) \
NS_IMETHOD GetActiveMediaCaptureWindows(nsIArray * *aActiveMediaCaptureWindows) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetActiveMediaCaptureWindows(aActiveMediaCaptureWindows); } \
NS_IMETHOD MediaCaptureWindowState(nsIDOMWindow *aWindow, bool *aVideo, bool *aAudio, bool *aScreenShare = nullptr, bool *aWindowShare = nullptr, bool *aAppShare = nullptr, bool *aBrowserShare = nullptr) override { return !_to ? NS_ERROR_NULL_POINTER : _to->MediaCaptureWindowState(aWindow, aVideo, aAudio, aScreenShare, aWindowShare, aAppShare, aBrowserShare); } \
NS_IMETHOD SanitizeDeviceIds(int64_t sinceWhen) override { return !_to ? NS_ERROR_NULL_POINTER : _to->SanitizeDeviceIds(sinceWhen); }
#if 0
/* Use the code below as a template for the implementation class for this interface. */
/* Header file */
class nsMediaManagerService : public nsIMediaManagerService
{
public:
NS_DECL_ISUPPORTS
NS_DECL_NSIMEDIAMANAGERSERVICE
nsMediaManagerService();
private:
~nsMediaManagerService();
protected:
/* additional members */
};
/* Implementation file */
NS_IMPL_ISUPPORTS(nsMediaManagerService, nsIMediaManagerService)
nsMediaManagerService::nsMediaManagerService()
{
/* member initializers and constructor code */
}
nsMediaManagerService::~nsMediaManagerService()
{
/* destructor code */
}
/* readonly attribute nsIArray activeMediaCaptureWindows; */
NS_IMETHODIMP nsMediaManagerService::GetActiveMediaCaptureWindows(nsIArray * *aActiveMediaCaptureWindows)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* void mediaCaptureWindowState (in nsIDOMWindow aWindow, out boolean aVideo, out boolean aAudio, [optional] out boolean aScreenShare, [optional] out boolean aWindowShare, [optional] out boolean aAppShare, [optional] out boolean aBrowserShare); */
NS_IMETHODIMP nsMediaManagerService::MediaCaptureWindowState(nsIDOMWindow *aWindow, bool *aVideo, bool *aAudio, bool *aScreenShare = nullptr, bool *aWindowShare = nullptr, bool *aAppShare = nullptr, bool *aBrowserShare = nullptr)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* void sanitizeDeviceIds (in long long sinceWhen); */
NS_IMETHODIMP nsMediaManagerService::SanitizeDeviceIds(int64_t sinceWhen)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* End of implementation class template. */
#endif
#endif /* __gen_nsIMediaManager_h__ */
|