/usr/include/thunderbird/nsIRefreshURI.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 | /*
* DO NOT EDIT. THIS FILE IS GENERATED FROM ../../../dist/idl/nsIRefreshURI.idl
*/
#ifndef __gen_nsIRefreshURI_h__
#define __gen_nsIRefreshURI_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 nsIChannel; /* forward declaration */
class nsIPrincipal; /* forward declaration */
class nsIURI; /* forward declaration */
/* starting interface: nsIRefreshURI */
#define NS_IREFRESHURI_IID_STR "a5e61a3c-51bd-45be-ac0c-e87b71860656"
#define NS_IREFRESHURI_IID \
{0xa5e61a3c, 0x51bd, 0x45be, \
{ 0xac, 0x0c, 0xe8, 0x7b, 0x71, 0x86, 0x06, 0x56 }}
class NS_NO_VTABLE nsIRefreshURI : public nsISupports {
public:
NS_DECLARE_STATIC_IID_ACCESSOR(NS_IREFRESHURI_IID)
/* void refreshURI (in nsIURI aURI, in long aMillis, in boolean aRepeat, in boolean aMetaRefresh, [optional] in nsIPrincipal aPrincipal); */
NS_IMETHOD RefreshURI(nsIURI *aURI, int32_t aMillis, bool aRepeat, bool aMetaRefresh, nsIPrincipal *aPrincipal) = 0;
/* void forceRefreshURI (in nsIURI aURI, in long aMillis, in boolean aMetaRefresh, [optional] in nsIPrincipal aPrincipal); */
NS_IMETHOD ForceRefreshURI(nsIURI *aURI, int32_t aMillis, bool aMetaRefresh, nsIPrincipal *aPrincipal) = 0;
/* void setupRefreshURI (in nsIChannel aChannel); */
NS_IMETHOD SetupRefreshURI(nsIChannel *aChannel) = 0;
/* void setupRefreshURIFromHeader (in nsIURI aBaseURI, in nsIPrincipal principal, in ACString aHeader); */
NS_IMETHOD SetupRefreshURIFromHeader(nsIURI *aBaseURI, nsIPrincipal *principal, const nsACString & aHeader) = 0;
/* void cancelRefreshURITimers (); */
NS_IMETHOD CancelRefreshURITimers(void) = 0;
/* readonly attribute boolean refreshPending; */
NS_IMETHOD GetRefreshPending(bool *aRefreshPending) = 0;
};
NS_DEFINE_STATIC_IID_ACCESSOR(nsIRefreshURI, NS_IREFRESHURI_IID)
/* Use this macro when declaring classes that implement this interface. */
#define NS_DECL_NSIREFRESHURI \
NS_IMETHOD RefreshURI(nsIURI *aURI, int32_t aMillis, bool aRepeat, bool aMetaRefresh, nsIPrincipal *aPrincipal) override; \
NS_IMETHOD ForceRefreshURI(nsIURI *aURI, int32_t aMillis, bool aMetaRefresh, nsIPrincipal *aPrincipal) override; \
NS_IMETHOD SetupRefreshURI(nsIChannel *aChannel) override; \
NS_IMETHOD SetupRefreshURIFromHeader(nsIURI *aBaseURI, nsIPrincipal *principal, const nsACString & aHeader) override; \
NS_IMETHOD CancelRefreshURITimers(void) override; \
NS_IMETHOD GetRefreshPending(bool *aRefreshPending) 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_NSIREFRESHURI \
NS_METHOD RefreshURI(nsIURI *aURI, int32_t aMillis, bool aRepeat, bool aMetaRefresh, nsIPrincipal *aPrincipal); \
NS_METHOD ForceRefreshURI(nsIURI *aURI, int32_t aMillis, bool aMetaRefresh, nsIPrincipal *aPrincipal); \
NS_METHOD SetupRefreshURI(nsIChannel *aChannel); \
NS_METHOD SetupRefreshURIFromHeader(nsIURI *aBaseURI, nsIPrincipal *principal, const nsACString & aHeader); \
NS_METHOD CancelRefreshURITimers(void); \
NS_METHOD GetRefreshPending(bool *aRefreshPending);
/* Use this macro to declare functions that forward the behavior of this interface to another object. */
#define NS_FORWARD_NSIREFRESHURI(_to) \
NS_IMETHOD RefreshURI(nsIURI *aURI, int32_t aMillis, bool aRepeat, bool aMetaRefresh, nsIPrincipal *aPrincipal) override { return _to RefreshURI(aURI, aMillis, aRepeat, aMetaRefresh, aPrincipal); } \
NS_IMETHOD ForceRefreshURI(nsIURI *aURI, int32_t aMillis, bool aMetaRefresh, nsIPrincipal *aPrincipal) override { return _to ForceRefreshURI(aURI, aMillis, aMetaRefresh, aPrincipal); } \
NS_IMETHOD SetupRefreshURI(nsIChannel *aChannel) override { return _to SetupRefreshURI(aChannel); } \
NS_IMETHOD SetupRefreshURIFromHeader(nsIURI *aBaseURI, nsIPrincipal *principal, const nsACString & aHeader) override { return _to SetupRefreshURIFromHeader(aBaseURI, principal, aHeader); } \
NS_IMETHOD CancelRefreshURITimers(void) override { return _to CancelRefreshURITimers(); } \
NS_IMETHOD GetRefreshPending(bool *aRefreshPending) override { return _to GetRefreshPending(aRefreshPending); }
/* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
#define NS_FORWARD_SAFE_NSIREFRESHURI(_to) \
NS_IMETHOD RefreshURI(nsIURI *aURI, int32_t aMillis, bool aRepeat, bool aMetaRefresh, nsIPrincipal *aPrincipal) override { return !_to ? NS_ERROR_NULL_POINTER : _to->RefreshURI(aURI, aMillis, aRepeat, aMetaRefresh, aPrincipal); } \
NS_IMETHOD ForceRefreshURI(nsIURI *aURI, int32_t aMillis, bool aMetaRefresh, nsIPrincipal *aPrincipal) override { return !_to ? NS_ERROR_NULL_POINTER : _to->ForceRefreshURI(aURI, aMillis, aMetaRefresh, aPrincipal); } \
NS_IMETHOD SetupRefreshURI(nsIChannel *aChannel) override { return !_to ? NS_ERROR_NULL_POINTER : _to->SetupRefreshURI(aChannel); } \
NS_IMETHOD SetupRefreshURIFromHeader(nsIURI *aBaseURI, nsIPrincipal *principal, const nsACString & aHeader) override { return !_to ? NS_ERROR_NULL_POINTER : _to->SetupRefreshURIFromHeader(aBaseURI, principal, aHeader); } \
NS_IMETHOD CancelRefreshURITimers(void) override { return !_to ? NS_ERROR_NULL_POINTER : _to->CancelRefreshURITimers(); } \
NS_IMETHOD GetRefreshPending(bool *aRefreshPending) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetRefreshPending(aRefreshPending); }
#if 0
/* Use the code below as a template for the implementation class for this interface. */
/* Header file */
class nsRefreshURI : public nsIRefreshURI
{
public:
NS_DECL_ISUPPORTS
NS_DECL_NSIREFRESHURI
nsRefreshURI();
private:
~nsRefreshURI();
protected:
/* additional members */
};
/* Implementation file */
NS_IMPL_ISUPPORTS(nsRefreshURI, nsIRefreshURI)
nsRefreshURI::nsRefreshURI()
{
/* member initializers and constructor code */
}
nsRefreshURI::~nsRefreshURI()
{
/* destructor code */
}
/* void refreshURI (in nsIURI aURI, in long aMillis, in boolean aRepeat, in boolean aMetaRefresh, [optional] in nsIPrincipal aPrincipal); */
NS_IMETHODIMP nsRefreshURI::RefreshURI(nsIURI *aURI, int32_t aMillis, bool aRepeat, bool aMetaRefresh, nsIPrincipal *aPrincipal)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* void forceRefreshURI (in nsIURI aURI, in long aMillis, in boolean aMetaRefresh, [optional] in nsIPrincipal aPrincipal); */
NS_IMETHODIMP nsRefreshURI::ForceRefreshURI(nsIURI *aURI, int32_t aMillis, bool aMetaRefresh, nsIPrincipal *aPrincipal)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* void setupRefreshURI (in nsIChannel aChannel); */
NS_IMETHODIMP nsRefreshURI::SetupRefreshURI(nsIChannel *aChannel)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* void setupRefreshURIFromHeader (in nsIURI aBaseURI, in nsIPrincipal principal, in ACString aHeader); */
NS_IMETHODIMP nsRefreshURI::SetupRefreshURIFromHeader(nsIURI *aBaseURI, nsIPrincipal *principal, const nsACString & aHeader)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* void cancelRefreshURITimers (); */
NS_IMETHODIMP nsRefreshURI::CancelRefreshURITimers()
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* readonly attribute boolean refreshPending; */
NS_IMETHODIMP nsRefreshURI::GetRefreshPending(bool *aRefreshPending)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* End of implementation class template. */
#endif
#endif /* __gen_nsIRefreshURI_h__ */
|