/usr/include/thunderbird/nsICookieManager.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 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 | /*
* DO NOT EDIT. THIS FILE IS GENERATED FROM ../../../dist/idl/nsICookieManager.idl
*/
#ifndef __gen_nsICookieManager_h__
#define __gen_nsICookieManager_h__
#ifndef __gen_nsISupports_h__
#include "nsISupports.h"
#endif
#include "js/Value.h"
/* For IDL files that don't want to include root IDL files. */
#ifndef NS_NO_VTABLE
#define NS_NO_VTABLE
#endif
namespace mozilla {
class NeckoOriginAttributes;
} // mozilla namespace
class nsISimpleEnumerator; /* forward declaration */
/* starting interface: nsIPrivateModeCallback */
#define NS_IPRIVATEMODECALLBACK_IID_STR "20709db8-8dad-4e45-b33e-6e7c761dfc5d"
#define NS_IPRIVATEMODECALLBACK_IID \
{0x20709db8, 0x8dad, 0x4e45, \
{ 0xb3, 0x3e, 0x6e, 0x7c, 0x76, 0x1d, 0xfc, 0x5d }}
class NS_NO_VTABLE nsIPrivateModeCallback : public nsISupports {
public:
NS_DECLARE_STATIC_IID_ACCESSOR(NS_IPRIVATEMODECALLBACK_IID)
/* void callback (); */
NS_IMETHOD Callback(void) = 0;
};
NS_DEFINE_STATIC_IID_ACCESSOR(nsIPrivateModeCallback, NS_IPRIVATEMODECALLBACK_IID)
/* Use this macro when declaring classes that implement this interface. */
#define NS_DECL_NSIPRIVATEMODECALLBACK \
NS_IMETHOD Callback(void) 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_NSIPRIVATEMODECALLBACK \
NS_METHOD Callback(void);
/* Use this macro to declare functions that forward the behavior of this interface to another object. */
#define NS_FORWARD_NSIPRIVATEMODECALLBACK(_to) \
NS_IMETHOD Callback(void) override { return _to Callback(); }
/* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
#define NS_FORWARD_SAFE_NSIPRIVATEMODECALLBACK(_to) \
NS_IMETHOD Callback(void) override { return !_to ? NS_ERROR_NULL_POINTER : _to->Callback(); }
#if 0
/* Use the code below as a template for the implementation class for this interface. */
/* Header file */
class nsPrivateModeCallback : public nsIPrivateModeCallback
{
public:
NS_DECL_ISUPPORTS
NS_DECL_NSIPRIVATEMODECALLBACK
nsPrivateModeCallback();
private:
~nsPrivateModeCallback();
protected:
/* additional members */
};
/* Implementation file */
NS_IMPL_ISUPPORTS(nsPrivateModeCallback, nsIPrivateModeCallback)
nsPrivateModeCallback::nsPrivateModeCallback()
{
/* member initializers and constructor code */
}
nsPrivateModeCallback::~nsPrivateModeCallback()
{
/* destructor code */
}
/* void callback (); */
NS_IMETHODIMP nsPrivateModeCallback::Callback()
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* End of implementation class template. */
#endif
/* starting interface: nsICookieManager */
#define NS_ICOOKIEMANAGER_IID_STR "aaab6710-0f2c-11d5-a53b-0010a401eb10"
#define NS_ICOOKIEMANAGER_IID \
{0xaaab6710, 0x0f2c, 0x11d5, \
{ 0xa5, 0x3b, 0x00, 0x10, 0xa4, 0x01, 0xeb, 0x10 }}
class NS_NO_VTABLE nsICookieManager : public nsISupports {
public:
NS_DECLARE_STATIC_IID_ACCESSOR(NS_ICOOKIEMANAGER_IID)
/* void removeAll (); */
NS_IMETHOD RemoveAll(void) = 0;
/* readonly attribute nsISimpleEnumerator enumerator; */
NS_IMETHOD GetEnumerator(nsISimpleEnumerator * *aEnumerator) = 0;
/* [implicit_jscontext,optional_argc] void remove (in AUTF8String aHost, in ACString aName, in AUTF8String aPath, in boolean aBlocked, [optional] in jsval aOriginAttributes); */
NS_IMETHOD Remove(const nsACString & aHost, const nsACString & aName, const nsACString & aPath, bool aBlocked, JS::HandleValue aOriginAttributes, JSContext* cx, uint8_t _argc) = 0;
/* [notxpcom] nsresult removeNative (in AUTF8String aHost, in ACString aName, in AUTF8String aPath, in boolean aBlocked, in NeckoOriginAttributesPtr aOriginAttributes); */
NS_IMETHOD_(nsresult) RemoveNative(const nsACString & aHost, const nsACString & aName, const nsACString & aPath, bool aBlocked, mozilla::NeckoOriginAttributes *aOriginAttributes) = 0;
/* void usePrivateMode (in boolean aIsPrivate, in nsIPrivateModeCallback aCallback); */
NS_IMETHOD UsePrivateMode(bool aIsPrivate, nsIPrivateModeCallback *aCallback) = 0;
};
NS_DEFINE_STATIC_IID_ACCESSOR(nsICookieManager, NS_ICOOKIEMANAGER_IID)
/* Use this macro when declaring classes that implement this interface. */
#define NS_DECL_NSICOOKIEMANAGER \
NS_IMETHOD RemoveAll(void) override; \
NS_IMETHOD GetEnumerator(nsISimpleEnumerator * *aEnumerator) override; \
NS_IMETHOD Remove(const nsACString & aHost, const nsACString & aName, const nsACString & aPath, bool aBlocked, JS::HandleValue aOriginAttributes, JSContext* cx, uint8_t _argc) override; \
NS_IMETHOD_(nsresult) RemoveNative(const nsACString & aHost, const nsACString & aName, const nsACString & aPath, bool aBlocked, mozilla::NeckoOriginAttributes *aOriginAttributes) override; \
NS_IMETHOD UsePrivateMode(bool aIsPrivate, nsIPrivateModeCallback *aCallback) 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_NSICOOKIEMANAGER \
NS_METHOD RemoveAll(void); \
NS_METHOD GetEnumerator(nsISimpleEnumerator * *aEnumerator); \
NS_METHOD Remove(const nsACString & aHost, const nsACString & aName, const nsACString & aPath, bool aBlocked, JS::HandleValue aOriginAttributes, JSContext* cx, uint8_t _argc); \
NS_METHOD_(nsresult) RemoveNative(const nsACString & aHost, const nsACString & aName, const nsACString & aPath, bool aBlocked, mozilla::NeckoOriginAttributes *aOriginAttributes); \
NS_METHOD UsePrivateMode(bool aIsPrivate, nsIPrivateModeCallback *aCallback);
/* Use this macro to declare functions that forward the behavior of this interface to another object. */
#define NS_FORWARD_NSICOOKIEMANAGER(_to) \
NS_IMETHOD RemoveAll(void) override { return _to RemoveAll(); } \
NS_IMETHOD GetEnumerator(nsISimpleEnumerator * *aEnumerator) override { return _to GetEnumerator(aEnumerator); } \
NS_IMETHOD Remove(const nsACString & aHost, const nsACString & aName, const nsACString & aPath, bool aBlocked, JS::HandleValue aOriginAttributes, JSContext* cx, uint8_t _argc) override { return _to Remove(aHost, aName, aPath, aBlocked, aOriginAttributes, cx, _argc); } \
NS_IMETHOD_(nsresult) RemoveNative(const nsACString & aHost, const nsACString & aName, const nsACString & aPath, bool aBlocked, mozilla::NeckoOriginAttributes *aOriginAttributes) override { return _to RemoveNative(aHost, aName, aPath, aBlocked, aOriginAttributes); } \
NS_IMETHOD UsePrivateMode(bool aIsPrivate, nsIPrivateModeCallback *aCallback) override { return _to UsePrivateMode(aIsPrivate, aCallback); }
/* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
#define NS_FORWARD_SAFE_NSICOOKIEMANAGER(_to) \
NS_IMETHOD RemoveAll(void) override { return !_to ? NS_ERROR_NULL_POINTER : _to->RemoveAll(); } \
NS_IMETHOD GetEnumerator(nsISimpleEnumerator * *aEnumerator) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetEnumerator(aEnumerator); } \
NS_IMETHOD Remove(const nsACString & aHost, const nsACString & aName, const nsACString & aPath, bool aBlocked, JS::HandleValue aOriginAttributes, JSContext* cx, uint8_t _argc) override { return !_to ? NS_ERROR_NULL_POINTER : _to->Remove(aHost, aName, aPath, aBlocked, aOriginAttributes, cx, _argc); } \
NS_IMETHOD_(nsresult) RemoveNative(const nsACString & aHost, const nsACString & aName, const nsACString & aPath, bool aBlocked, mozilla::NeckoOriginAttributes *aOriginAttributes) override; \
NS_IMETHOD UsePrivateMode(bool aIsPrivate, nsIPrivateModeCallback *aCallback) override { return !_to ? NS_ERROR_NULL_POINTER : _to->UsePrivateMode(aIsPrivate, aCallback); }
#if 0
/* Use the code below as a template for the implementation class for this interface. */
/* Header file */
class nsCookieManager : public nsICookieManager
{
public:
NS_DECL_ISUPPORTS
NS_DECL_NSICOOKIEMANAGER
nsCookieManager();
private:
~nsCookieManager();
protected:
/* additional members */
};
/* Implementation file */
NS_IMPL_ISUPPORTS(nsCookieManager, nsICookieManager)
nsCookieManager::nsCookieManager()
{
/* member initializers and constructor code */
}
nsCookieManager::~nsCookieManager()
{
/* destructor code */
}
/* void removeAll (); */
NS_IMETHODIMP nsCookieManager::RemoveAll()
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* readonly attribute nsISimpleEnumerator enumerator; */
NS_IMETHODIMP nsCookieManager::GetEnumerator(nsISimpleEnumerator * *aEnumerator)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* [implicit_jscontext,optional_argc] void remove (in AUTF8String aHost, in ACString aName, in AUTF8String aPath, in boolean aBlocked, [optional] in jsval aOriginAttributes); */
NS_IMETHODIMP nsCookieManager::Remove(const nsACString & aHost, const nsACString & aName, const nsACString & aPath, bool aBlocked, JS::HandleValue aOriginAttributes, JSContext* cx, uint8_t _argc)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* [notxpcom] nsresult removeNative (in AUTF8String aHost, in ACString aName, in AUTF8String aPath, in boolean aBlocked, in NeckoOriginAttributesPtr aOriginAttributes); */
NS_IMETHODIMP_(nsresult) nsCookieManager::RemoveNative(const nsACString & aHost, const nsACString & aName, const nsACString & aPath, bool aBlocked, mozilla::NeckoOriginAttributes *aOriginAttributes)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* void usePrivateMode (in boolean aIsPrivate, in nsIPrivateModeCallback aCallback); */
NS_IMETHODIMP nsCookieManager::UsePrivateMode(bool aIsPrivate, nsIPrivateModeCallback *aCallback)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* End of implementation class template. */
#endif
#endif /* __gen_nsICookieManager_h__ */
|