/usr/include/thunderbird/nsIWyciwygChannel.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 | /*
* DO NOT EDIT. THIS FILE IS GENERATED FROM ../../../dist/idl/nsIWyciwygChannel.idl
*/
#ifndef __gen_nsIWyciwygChannel_h__
#define __gen_nsIWyciwygChannel_h__
#ifndef __gen_nsIChannel_h__
#include "nsIChannel.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: nsIWyciwygChannel */
#define NS_IWYCIWYGCHANNEL_IID_STR "8b8f3341-46da-40f5-a16f-41a91f5d25dd"
#define NS_IWYCIWYGCHANNEL_IID \
{0x8b8f3341, 0x46da, 0x40f5, \
{ 0xa1, 0x6f, 0x41, 0xa9, 0x1f, 0x5d, 0x25, 0xdd }}
class NS_NO_VTABLE nsIWyciwygChannel : public nsIChannel {
public:
NS_DECLARE_STATIC_IID_ACCESSOR(NS_IWYCIWYGCHANNEL_IID)
/* void writeToCacheEntry (in AString aData); */
NS_IMETHOD WriteToCacheEntry(const nsAString & aData) = 0;
/* void closeCacheEntry (in nsresult reason); */
NS_IMETHOD CloseCacheEntry(nsresult reason) = 0;
/* void setSecurityInfo (in nsISupports aSecurityInfo); */
NS_IMETHOD SetSecurityInfo(nsISupports *aSecurityInfo) = 0;
/* void setCharsetAndSource (in long aSource, in ACString aCharset); */
NS_IMETHOD SetCharsetAndSource(int32_t aSource, const nsACString & aCharset) = 0;
/* ACString getCharsetAndSource (out long aSource); */
NS_IMETHOD GetCharsetAndSource(int32_t *aSource, nsACString & _retval) = 0;
};
NS_DEFINE_STATIC_IID_ACCESSOR(nsIWyciwygChannel, NS_IWYCIWYGCHANNEL_IID)
/* Use this macro when declaring classes that implement this interface. */
#define NS_DECL_NSIWYCIWYGCHANNEL \
NS_IMETHOD WriteToCacheEntry(const nsAString & aData) override; \
NS_IMETHOD CloseCacheEntry(nsresult reason) override; \
NS_IMETHOD SetSecurityInfo(nsISupports *aSecurityInfo) override; \
NS_IMETHOD SetCharsetAndSource(int32_t aSource, const nsACString & aCharset) override; \
NS_IMETHOD GetCharsetAndSource(int32_t *aSource, nsACString & _retval) 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_NSIWYCIWYGCHANNEL \
NS_METHOD WriteToCacheEntry(const nsAString & aData); \
NS_METHOD CloseCacheEntry(nsresult reason); \
NS_METHOD SetSecurityInfo(nsISupports *aSecurityInfo); \
NS_METHOD SetCharsetAndSource(int32_t aSource, const nsACString & aCharset); \
NS_METHOD GetCharsetAndSource(int32_t *aSource, nsACString & _retval);
/* Use this macro to declare functions that forward the behavior of this interface to another object. */
#define NS_FORWARD_NSIWYCIWYGCHANNEL(_to) \
NS_IMETHOD WriteToCacheEntry(const nsAString & aData) override { return _to WriteToCacheEntry(aData); } \
NS_IMETHOD CloseCacheEntry(nsresult reason) override { return _to CloseCacheEntry(reason); } \
NS_IMETHOD SetSecurityInfo(nsISupports *aSecurityInfo) override { return _to SetSecurityInfo(aSecurityInfo); } \
NS_IMETHOD SetCharsetAndSource(int32_t aSource, const nsACString & aCharset) override { return _to SetCharsetAndSource(aSource, aCharset); } \
NS_IMETHOD GetCharsetAndSource(int32_t *aSource, nsACString & _retval) override { return _to GetCharsetAndSource(aSource, _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_NSIWYCIWYGCHANNEL(_to) \
NS_IMETHOD WriteToCacheEntry(const nsAString & aData) override { return !_to ? NS_ERROR_NULL_POINTER : _to->WriteToCacheEntry(aData); } \
NS_IMETHOD CloseCacheEntry(nsresult reason) override { return !_to ? NS_ERROR_NULL_POINTER : _to->CloseCacheEntry(reason); } \
NS_IMETHOD SetSecurityInfo(nsISupports *aSecurityInfo) override { return !_to ? NS_ERROR_NULL_POINTER : _to->SetSecurityInfo(aSecurityInfo); } \
NS_IMETHOD SetCharsetAndSource(int32_t aSource, const nsACString & aCharset) override { return !_to ? NS_ERROR_NULL_POINTER : _to->SetCharsetAndSource(aSource, aCharset); } \
NS_IMETHOD GetCharsetAndSource(int32_t *aSource, nsACString & _retval) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetCharsetAndSource(aSource, _retval); }
#if 0
/* Use the code below as a template for the implementation class for this interface. */
/* Header file */
class nsWyciwygChannel : public nsIWyciwygChannel
{
public:
NS_DECL_ISUPPORTS
NS_DECL_NSIWYCIWYGCHANNEL
nsWyciwygChannel();
private:
~nsWyciwygChannel();
protected:
/* additional members */
};
/* Implementation file */
NS_IMPL_ISUPPORTS(nsWyciwygChannel, nsIWyciwygChannel)
nsWyciwygChannel::nsWyciwygChannel()
{
/* member initializers and constructor code */
}
nsWyciwygChannel::~nsWyciwygChannel()
{
/* destructor code */
}
/* void writeToCacheEntry (in AString aData); */
NS_IMETHODIMP nsWyciwygChannel::WriteToCacheEntry(const nsAString & aData)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* void closeCacheEntry (in nsresult reason); */
NS_IMETHODIMP nsWyciwygChannel::CloseCacheEntry(nsresult reason)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* void setSecurityInfo (in nsISupports aSecurityInfo); */
NS_IMETHODIMP nsWyciwygChannel::SetSecurityInfo(nsISupports *aSecurityInfo)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* void setCharsetAndSource (in long aSource, in ACString aCharset); */
NS_IMETHODIMP nsWyciwygChannel::SetCharsetAndSource(int32_t aSource, const nsACString & aCharset)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* ACString getCharsetAndSource (out long aSource); */
NS_IMETHODIMP nsWyciwygChannel::GetCharsetAndSource(int32_t *aSource, nsACString & _retval)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* End of implementation class template. */
#endif
#endif /* __gen_nsIWyciwygChannel_h__ */
|