/usr/include/thunderbird/nsIAppShell.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 | /*
* DO NOT EDIT. THIS FILE IS GENERATED FROM ../../../dist/idl/nsIAppShell.idl
*/
#ifndef __gen_nsIAppShell_h__
#define __gen_nsIAppShell_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 nsIRunnable; /* forward declaration */
template <class T> struct already_AddRefed;
/* starting interface: nsIAppShell */
#define NS_IAPPSHELL_IID_STR "7cd5c71d-223b-4afe-931d-5eedb1f2b01f"
#define NS_IAPPSHELL_IID \
{0x7cd5c71d, 0x223b, 0x4afe, \
{ 0x93, 0x1d, 0x5e, 0xed, 0xb1, 0xf2, 0xb0, 0x1f }}
class NS_NO_VTABLE nsIAppShell : public nsISupports {
public:
NS_DECLARE_STATIC_IID_ACCESSOR(NS_IAPPSHELL_IID)
/* void run (); */
NS_IMETHOD Run(void) = 0;
/* void exit (); */
NS_IMETHOD Exit(void) = 0;
/* void favorPerformanceHint (in boolean favorPerfOverStarvation, in unsigned long starvationDelay); */
NS_IMETHOD FavorPerformanceHint(bool favorPerfOverStarvation, uint32_t starvationDelay) = 0;
/* void suspendNative (); */
NS_IMETHOD SuspendNative(void) = 0;
/* void resumeNative (); */
NS_IMETHOD ResumeNative(void) = 0;
/* readonly attribute unsigned long eventloopNestingLevel; */
NS_IMETHOD GetEventloopNestingLevel(uint32_t *aEventloopNestingLevel) = 0;
};
NS_DEFINE_STATIC_IID_ACCESSOR(nsIAppShell, NS_IAPPSHELL_IID)
/* Use this macro when declaring classes that implement this interface. */
#define NS_DECL_NSIAPPSHELL \
NS_IMETHOD Run(void) override; \
NS_IMETHOD Exit(void) override; \
NS_IMETHOD FavorPerformanceHint(bool favorPerfOverStarvation, uint32_t starvationDelay) override; \
NS_IMETHOD SuspendNative(void) override; \
NS_IMETHOD ResumeNative(void) override; \
NS_IMETHOD GetEventloopNestingLevel(uint32_t *aEventloopNestingLevel) 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_NSIAPPSHELL \
NS_METHOD Run(void); \
NS_METHOD Exit(void); \
NS_METHOD FavorPerformanceHint(bool favorPerfOverStarvation, uint32_t starvationDelay); \
NS_METHOD SuspendNative(void); \
NS_METHOD ResumeNative(void); \
NS_METHOD GetEventloopNestingLevel(uint32_t *aEventloopNestingLevel);
/* Use this macro to declare functions that forward the behavior of this interface to another object. */
#define NS_FORWARD_NSIAPPSHELL(_to) \
NS_IMETHOD Run(void) override { return _to Run(); } \
NS_IMETHOD Exit(void) override { return _to Exit(); } \
NS_IMETHOD FavorPerformanceHint(bool favorPerfOverStarvation, uint32_t starvationDelay) override { return _to FavorPerformanceHint(favorPerfOverStarvation, starvationDelay); } \
NS_IMETHOD SuspendNative(void) override { return _to SuspendNative(); } \
NS_IMETHOD ResumeNative(void) override { return _to ResumeNative(); } \
NS_IMETHOD GetEventloopNestingLevel(uint32_t *aEventloopNestingLevel) override { return _to GetEventloopNestingLevel(aEventloopNestingLevel); }
/* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
#define NS_FORWARD_SAFE_NSIAPPSHELL(_to) \
NS_IMETHOD Run(void) override { return !_to ? NS_ERROR_NULL_POINTER : _to->Run(); } \
NS_IMETHOD Exit(void) override { return !_to ? NS_ERROR_NULL_POINTER : _to->Exit(); } \
NS_IMETHOD FavorPerformanceHint(bool favorPerfOverStarvation, uint32_t starvationDelay) override { return !_to ? NS_ERROR_NULL_POINTER : _to->FavorPerformanceHint(favorPerfOverStarvation, starvationDelay); } \
NS_IMETHOD SuspendNative(void) override { return !_to ? NS_ERROR_NULL_POINTER : _to->SuspendNative(); } \
NS_IMETHOD ResumeNative(void) override { return !_to ? NS_ERROR_NULL_POINTER : _to->ResumeNative(); } \
NS_IMETHOD GetEventloopNestingLevel(uint32_t *aEventloopNestingLevel) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetEventloopNestingLevel(aEventloopNestingLevel); }
#if 0
/* Use the code below as a template for the implementation class for this interface. */
/* Header file */
class nsAppShell : public nsIAppShell
{
public:
NS_DECL_ISUPPORTS
NS_DECL_NSIAPPSHELL
nsAppShell();
private:
~nsAppShell();
protected:
/* additional members */
};
/* Implementation file */
NS_IMPL_ISUPPORTS(nsAppShell, nsIAppShell)
nsAppShell::nsAppShell()
{
/* member initializers and constructor code */
}
nsAppShell::~nsAppShell()
{
/* destructor code */
}
/* void run (); */
NS_IMETHODIMP nsAppShell::Run()
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* void exit (); */
NS_IMETHODIMP nsAppShell::Exit()
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* void favorPerformanceHint (in boolean favorPerfOverStarvation, in unsigned long starvationDelay); */
NS_IMETHODIMP nsAppShell::FavorPerformanceHint(bool favorPerfOverStarvation, uint32_t starvationDelay)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* void suspendNative (); */
NS_IMETHODIMP nsAppShell::SuspendNative()
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* void resumeNative (); */
NS_IMETHODIMP nsAppShell::ResumeNative()
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* readonly attribute unsigned long eventloopNestingLevel; */
NS_IMETHODIMP nsAppShell::GetEventloopNestingLevel(uint32_t *aEventloopNestingLevel)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* End of implementation class template. */
#endif
#endif /* __gen_nsIAppShell_h__ */
|