/usr/include/thunderbird/amIWebInstaller.h is in thunderbird-dev 1:38.6.0+build1-0ubuntu1.
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 | /*
* DO NOT EDIT. THIS FILE IS GENERATED FROM ../../../dist/idl/amIWebInstaller.idl
*/
#ifndef __gen_amIWebInstaller_h__
#define __gen_amIWebInstaller_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 nsIDOMElement; /* forward declaration */
class nsIVariant; /* forward declaration */
class nsIURI; /* forward declaration */
/* starting interface: amIInstallCallback */
#define AMIINSTALLCALLBACK_IID_STR "bb22f5c0-3ca1-48f6-873c-54e87987700f"
#define AMIINSTALLCALLBACK_IID \
{0xbb22f5c0, 0x3ca1, 0x48f6, \
{ 0x87, 0x3c, 0x54, 0xe8, 0x79, 0x87, 0x70, 0x0f }}
class NS_NO_VTABLE amIInstallCallback : public nsISupports {
public:
NS_DECLARE_STATIC_IID_ACCESSOR(AMIINSTALLCALLBACK_IID)
/* void onInstallEnded (in AString aUrl, in int32_t aStatus); */
NS_IMETHOD OnInstallEnded(const nsAString & aUrl, int32_t aStatus) = 0;
};
NS_DEFINE_STATIC_IID_ACCESSOR(amIInstallCallback, AMIINSTALLCALLBACK_IID)
/* Use this macro when declaring classes that implement this interface. */
#define NS_DECL_AMIINSTALLCALLBACK \
NS_IMETHOD OnInstallEnded(const nsAString & aUrl, int32_t aStatus) override;
/* Use this macro to declare functions that forward the behavior of this interface to another object. */
#define NS_FORWARD_AMIINSTALLCALLBACK(_to) \
NS_IMETHOD OnInstallEnded(const nsAString & aUrl, int32_t aStatus) override { return _to OnInstallEnded(aUrl, aStatus); }
/* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
#define NS_FORWARD_SAFE_AMIINSTALLCALLBACK(_to) \
NS_IMETHOD OnInstallEnded(const nsAString & aUrl, int32_t aStatus) override { return !_to ? NS_ERROR_NULL_POINTER : _to->OnInstallEnded(aUrl, aStatus); }
#if 0
/* Use the code below as a template for the implementation class for this interface. */
/* Header file */
class amInstallCallback : public amIInstallCallback
{
public:
NS_DECL_ISUPPORTS
NS_DECL_AMIINSTALLCALLBACK
amInstallCallback();
private:
~amInstallCallback();
protected:
/* additional members */
};
/* Implementation file */
NS_IMPL_ISUPPORTS(amInstallCallback, amIInstallCallback)
amInstallCallback::amInstallCallback()
{
/* member initializers and constructor code */
}
amInstallCallback::~amInstallCallback()
{
/* destructor code */
}
/* void onInstallEnded (in AString aUrl, in int32_t aStatus); */
NS_IMETHODIMP amInstallCallback::OnInstallEnded(const nsAString & aUrl, int32_t aStatus)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* End of implementation class template. */
#endif
/* starting interface: amIWebInstaller */
#define AMIWEBINSTALLER_IID_STR "658d6c09-15e0-4688-bee8-8551030472a9"
#define AMIWEBINSTALLER_IID \
{0x658d6c09, 0x15e0, 0x4688, \
{ 0xbe, 0xe8, 0x85, 0x51, 0x03, 0x04, 0x72, 0xa9 }}
class NS_NO_VTABLE amIWebInstaller : public nsISupports {
public:
NS_DECLARE_STATIC_IID_ACCESSOR(AMIWEBINSTALLER_IID)
/* boolean isInstallEnabled (in AString aMimetype, in nsIURI aReferer); */
NS_IMETHOD IsInstallEnabled(const nsAString & aMimetype, nsIURI *aReferer, bool *_retval) = 0;
/* boolean installAddonsFromWebpage (in AString aMimetype, in nsIDOMElement aBrowser, in nsIURI aReferer, [array, size_is (aInstallCount)] in wstring aUris, [array, size_is (aInstallCount)] in wstring aHashes, [array, size_is (aInstallCount)] in wstring aNames, [array, size_is (aInstallCount)] in wstring aIcons, [optional] in amIInstallCallback aCallback, [optional] in uint32_t aInstallCount); */
NS_IMETHOD InstallAddonsFromWebpage(const nsAString & aMimetype, nsIDOMElement *aBrowser, nsIURI *aReferer, const char16_t * *aUris, const char16_t * *aHashes, const char16_t * *aNames, const char16_t * *aIcons, amIInstallCallback *aCallback, uint32_t aInstallCount, bool *_retval) = 0;
};
NS_DEFINE_STATIC_IID_ACCESSOR(amIWebInstaller, AMIWEBINSTALLER_IID)
/* Use this macro when declaring classes that implement this interface. */
#define NS_DECL_AMIWEBINSTALLER \
NS_IMETHOD IsInstallEnabled(const nsAString & aMimetype, nsIURI *aReferer, bool *_retval) override; \
NS_IMETHOD InstallAddonsFromWebpage(const nsAString & aMimetype, nsIDOMElement *aBrowser, nsIURI *aReferer, const char16_t * *aUris, const char16_t * *aHashes, const char16_t * *aNames, const char16_t * *aIcons, amIInstallCallback *aCallback, uint32_t aInstallCount, bool *_retval) override;
/* Use this macro to declare functions that forward the behavior of this interface to another object. */
#define NS_FORWARD_AMIWEBINSTALLER(_to) \
NS_IMETHOD IsInstallEnabled(const nsAString & aMimetype, nsIURI *aReferer, bool *_retval) override { return _to IsInstallEnabled(aMimetype, aReferer, _retval); } \
NS_IMETHOD InstallAddonsFromWebpage(const nsAString & aMimetype, nsIDOMElement *aBrowser, nsIURI *aReferer, const char16_t * *aUris, const char16_t * *aHashes, const char16_t * *aNames, const char16_t * *aIcons, amIInstallCallback *aCallback, uint32_t aInstallCount, bool *_retval) override { return _to InstallAddonsFromWebpage(aMimetype, aBrowser, aReferer, aUris, aHashes, aNames, aIcons, aCallback, aInstallCount, _retval); }
/* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
#define NS_FORWARD_SAFE_AMIWEBINSTALLER(_to) \
NS_IMETHOD IsInstallEnabled(const nsAString & aMimetype, nsIURI *aReferer, bool *_retval) override { return !_to ? NS_ERROR_NULL_POINTER : _to->IsInstallEnabled(aMimetype, aReferer, _retval); } \
NS_IMETHOD InstallAddonsFromWebpage(const nsAString & aMimetype, nsIDOMElement *aBrowser, nsIURI *aReferer, const char16_t * *aUris, const char16_t * *aHashes, const char16_t * *aNames, const char16_t * *aIcons, amIInstallCallback *aCallback, uint32_t aInstallCount, bool *_retval) override { return !_to ? NS_ERROR_NULL_POINTER : _to->InstallAddonsFromWebpage(aMimetype, aBrowser, aReferer, aUris, aHashes, aNames, aIcons, aCallback, aInstallCount, _retval); }
#if 0
/* Use the code below as a template for the implementation class for this interface. */
/* Header file */
class amWebInstaller : public amIWebInstaller
{
public:
NS_DECL_ISUPPORTS
NS_DECL_AMIWEBINSTALLER
amWebInstaller();
private:
~amWebInstaller();
protected:
/* additional members */
};
/* Implementation file */
NS_IMPL_ISUPPORTS(amWebInstaller, amIWebInstaller)
amWebInstaller::amWebInstaller()
{
/* member initializers and constructor code */
}
amWebInstaller::~amWebInstaller()
{
/* destructor code */
}
/* boolean isInstallEnabled (in AString aMimetype, in nsIURI aReferer); */
NS_IMETHODIMP amWebInstaller::IsInstallEnabled(const nsAString & aMimetype, nsIURI *aReferer, bool *_retval)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* boolean installAddonsFromWebpage (in AString aMimetype, in nsIDOMElement aBrowser, in nsIURI aReferer, [array, size_is (aInstallCount)] in wstring aUris, [array, size_is (aInstallCount)] in wstring aHashes, [array, size_is (aInstallCount)] in wstring aNames, [array, size_is (aInstallCount)] in wstring aIcons, [optional] in amIInstallCallback aCallback, [optional] in uint32_t aInstallCount); */
NS_IMETHODIMP amWebInstaller::InstallAddonsFromWebpage(const nsAString & aMimetype, nsIDOMElement *aBrowser, nsIURI *aReferer, const char16_t * *aUris, const char16_t * *aHashes, const char16_t * *aNames, const char16_t * *aIcons, amIInstallCallback *aCallback, uint32_t aInstallCount, bool *_retval)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* End of implementation class template. */
#endif
#endif /* __gen_amIWebInstaller_h__ */
|