/usr/include/thunderbird/nsILoadInfo.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 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 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 | /*
* DO NOT EDIT. THIS FILE IS GENERATED FROM ../../../dist/idl/nsILoadInfo.idl
*/
#ifndef __gen_nsILoadInfo_h__
#define __gen_nsILoadInfo_h__
#ifndef __gen_nsISupports_h__
#include "nsISupports.h"
#endif
#ifndef __gen_nsIContentPolicy_h__
#include "nsIContentPolicy.h"
#endif
#include "mozilla/Assertions.h"
#include "mozilla/DebugOnly.h"
/* For IDL files that don't want to include root IDL files. */
#ifndef NS_NO_VTABLE
#define NS_NO_VTABLE
#endif
class nsIDOMDocument; /* forward declaration */
class nsINode; /* forward declaration */
class nsIPrincipal; /* forward declaration */
class nsIURI; /* forward declaration */
typedef uint32_t nsSecurityFlags;
/* starting interface: nsILoadInfo */
#define NS_ILOADINFO_IID_STR "768a1f20-57d4-462a-812a-41c04e5d1e19"
#define NS_ILOADINFO_IID \
{0x768a1f20, 0x57d4, 0x462a, \
{ 0x81, 0x2a, 0x41, 0xc0, 0x4e, 0x5d, 0x1e, 0x19 }}
class nsILoadInfo : public nsISupports {
public:
NS_DECLARE_STATIC_IID_ACCESSOR(NS_ILOADINFO_IID)
enum {
SEC_NORMAL = 0U,
SEC_FORCE_INHERIT_PRINCIPAL = 1U,
SEC_SANDBOXED = 2U
};
/* readonly attribute nsIPrincipal loadingPrincipal; */
NS_IMETHOD GetLoadingPrincipal(nsIPrincipal * *aLoadingPrincipal) = 0;
/* [binaryname(LoadingPrincipal),noscript,nostdcall,notxpcom] nsIPrincipal binaryLoadingPrincipal (); */
virtual nsIPrincipal * LoadingPrincipal(void) = 0;
/* readonly attribute nsIPrincipal triggeringPrincipal; */
NS_IMETHOD GetTriggeringPrincipal(nsIPrincipal * *aTriggeringPrincipal) = 0;
/* [binaryname(TriggeringPrincipal),noscript,nostdcall,notxpcom] nsIPrincipal binaryTriggeringPrincipal (); */
virtual nsIPrincipal * TriggeringPrincipal(void) = 0;
/* readonly attribute nsIDOMDocument loadingDocument; */
NS_IMETHOD GetLoadingDocument(nsIDOMDocument * *aLoadingDocument) = 0;
/* [binaryname(LoadingNode),noscript,nostdcall,notxpcom] nsINode binaryLoadingNode (); */
virtual nsINode * LoadingNode(void) = 0;
/* readonly attribute nsSecurityFlags securityFlags; */
NS_IMETHOD GetSecurityFlags(nsSecurityFlags *aSecurityFlags) = 0;
inline nsSecurityFlags GetSecurityFlags()
{
nsSecurityFlags result;
mozilla::DebugOnly<nsresult> rv = GetSecurityFlags(&result);
MOZ_ASSERT(NS_SUCCEEDED(rv));
return result;
}
/* [infallible] readonly attribute boolean forceInheritPrincipal; */
NS_IMETHOD GetForceInheritPrincipal(bool *aForceInheritPrincipal) = 0;
inline bool GetForceInheritPrincipal()
{
bool result;
mozilla::DebugOnly<nsresult> rv = GetForceInheritPrincipal(&result);
MOZ_ASSERT(NS_SUCCEEDED(rv));
return result;
}
/* [infallible] readonly attribute boolean loadingSandboxed; */
NS_IMETHOD GetLoadingSandboxed(bool *aLoadingSandboxed) = 0;
inline bool GetLoadingSandboxed()
{
bool result;
mozilla::DebugOnly<nsresult> rv = GetLoadingSandboxed(&result);
MOZ_ASSERT(NS_SUCCEEDED(rv));
return result;
}
/* readonly attribute nsContentPolicyType contentPolicyType; */
NS_IMETHOD GetContentPolicyType(nsContentPolicyType *aContentPolicyType) = 0;
inline nsContentPolicyType GetContentPolicyType()
{
nsContentPolicyType result;
mozilla::DebugOnly<nsresult> rv = GetContentPolicyType(&result);
MOZ_ASSERT(NS_SUCCEEDED(rv));
return result;
}
/* readonly attribute nsIURI baseURI; */
NS_IMETHOD GetBaseURI(nsIURI * *aBaseURI) = 0;
/* [binaryname(BaseURI),noscript,nostdcall,notxpcom] nsIURI binaryBaseURI (); */
virtual nsIURI * BaseURI(void) = 0;
/* readonly attribute unsigned long innerWindowID; */
NS_IMETHOD GetInnerWindowID(uint32_t *aInnerWindowID) = 0;
inline uint32_t GetInnerWindowID()
{
uint32_t result;
mozilla::DebugOnly<nsresult> rv = GetInnerWindowID(&result);
MOZ_ASSERT(NS_SUCCEEDED(rv));
return result;
}
};
NS_DEFINE_STATIC_IID_ACCESSOR(nsILoadInfo, NS_ILOADINFO_IID)
/* Use this macro when declaring classes that implement this interface. */
#define NS_DECL_NSILOADINFO \
NS_IMETHOD GetLoadingPrincipal(nsIPrincipal * *aLoadingPrincipal) override; \
virtual nsIPrincipal * LoadingPrincipal(void) override; \
NS_IMETHOD GetTriggeringPrincipal(nsIPrincipal * *aTriggeringPrincipal) override; \
virtual nsIPrincipal * TriggeringPrincipal(void) override; \
NS_IMETHOD GetLoadingDocument(nsIDOMDocument * *aLoadingDocument) override; \
virtual nsINode * LoadingNode(void) override; \
NS_IMETHOD GetSecurityFlags(nsSecurityFlags *aSecurityFlags) override; \
using nsILoadInfo::GetForceInheritPrincipal; \
NS_IMETHOD GetForceInheritPrincipal(bool *aForceInheritPrincipal) override; \
using nsILoadInfo::GetLoadingSandboxed; \
NS_IMETHOD GetLoadingSandboxed(bool *aLoadingSandboxed) override; \
NS_IMETHOD GetContentPolicyType(nsContentPolicyType *aContentPolicyType) override; \
NS_IMETHOD GetBaseURI(nsIURI * *aBaseURI) override; \
virtual nsIURI * BaseURI(void) override; \
NS_IMETHOD GetInnerWindowID(uint32_t *aInnerWindowID) override; \
/* Use this macro to declare functions that forward the behavior of this interface to another object. */
#define NS_FORWARD_NSILOADINFO(_to) \
NS_IMETHOD GetLoadingPrincipal(nsIPrincipal * *aLoadingPrincipal) override { return _to GetLoadingPrincipal(aLoadingPrincipal); } \
virtual nsIPrincipal * LoadingPrincipal(void) override { return _to LoadingPrincipal(); } \
NS_IMETHOD GetTriggeringPrincipal(nsIPrincipal * *aTriggeringPrincipal) override { return _to GetTriggeringPrincipal(aTriggeringPrincipal); } \
virtual nsIPrincipal * TriggeringPrincipal(void) override { return _to TriggeringPrincipal(); } \
NS_IMETHOD GetLoadingDocument(nsIDOMDocument * *aLoadingDocument) override { return _to GetLoadingDocument(aLoadingDocument); } \
virtual nsINode * LoadingNode(void) override { return _to LoadingNode(); } \
NS_IMETHOD GetSecurityFlags(nsSecurityFlags *aSecurityFlags) override { return _to GetSecurityFlags(aSecurityFlags); } \
using nsILoadInfo::GetForceInheritPrincipal; \
NS_IMETHOD GetForceInheritPrincipal(bool *aForceInheritPrincipal) override { return _to GetForceInheritPrincipal(aForceInheritPrincipal); } \
using nsILoadInfo::GetLoadingSandboxed; \
NS_IMETHOD GetLoadingSandboxed(bool *aLoadingSandboxed) override { return _to GetLoadingSandboxed(aLoadingSandboxed); } \
NS_IMETHOD GetContentPolicyType(nsContentPolicyType *aContentPolicyType) override { return _to GetContentPolicyType(aContentPolicyType); } \
NS_IMETHOD GetBaseURI(nsIURI * *aBaseURI) override { return _to GetBaseURI(aBaseURI); } \
virtual nsIURI * BaseURI(void) override { return _to BaseURI(); } \
NS_IMETHOD GetInnerWindowID(uint32_t *aInnerWindowID) override { return _to GetInnerWindowID(aInnerWindowID); } \
/* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
#define NS_FORWARD_SAFE_NSILOADINFO(_to) \
NS_IMETHOD GetLoadingPrincipal(nsIPrincipal * *aLoadingPrincipal) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetLoadingPrincipal(aLoadingPrincipal); } \
virtual nsIPrincipal * LoadingPrincipal(void) override; \
NS_IMETHOD GetTriggeringPrincipal(nsIPrincipal * *aTriggeringPrincipal) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetTriggeringPrincipal(aTriggeringPrincipal); } \
virtual nsIPrincipal * TriggeringPrincipal(void) override; \
NS_IMETHOD GetLoadingDocument(nsIDOMDocument * *aLoadingDocument) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetLoadingDocument(aLoadingDocument); } \
virtual nsINode * LoadingNode(void) override; \
NS_IMETHOD GetSecurityFlags(nsSecurityFlags *aSecurityFlags) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetSecurityFlags(aSecurityFlags); } \
NS_IMETHOD GetForceInheritPrincipal(bool *aForceInheritPrincipal) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetForceInheritPrincipal(aForceInheritPrincipal); } \
NS_IMETHOD GetLoadingSandboxed(bool *aLoadingSandboxed) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetLoadingSandboxed(aLoadingSandboxed); } \
NS_IMETHOD GetContentPolicyType(nsContentPolicyType *aContentPolicyType) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetContentPolicyType(aContentPolicyType); } \
NS_IMETHOD GetBaseURI(nsIURI * *aBaseURI) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetBaseURI(aBaseURI); } \
virtual nsIURI * BaseURI(void) override; \
NS_IMETHOD GetInnerWindowID(uint32_t *aInnerWindowID) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetInnerWindowID(aInnerWindowID); } \
#if 0
/* Use the code below as a template for the implementation class for this interface. */
/* Header file */
class nsLoadInfo : public nsILoadInfo
{
public:
NS_DECL_ISUPPORTS
NS_DECL_NSILOADINFO
nsLoadInfo();
private:
~nsLoadInfo();
protected:
/* additional members */
};
/* Implementation file */
NS_IMPL_ISUPPORTS(nsLoadInfo, nsILoadInfo)
nsLoadInfo::nsLoadInfo()
{
/* member initializers and constructor code */
}
nsLoadInfo::~nsLoadInfo()
{
/* destructor code */
}
/* readonly attribute nsIPrincipal loadingPrincipal; */
NS_IMETHODIMP nsLoadInfo::GetLoadingPrincipal(nsIPrincipal * *aLoadingPrincipal)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* [binaryname(LoadingPrincipal),noscript,nostdcall,notxpcom] nsIPrincipal binaryLoadingPrincipal (); */
nsIPrincipal * nsLoadInfo::LoadingPrincipal()
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* readonly attribute nsIPrincipal triggeringPrincipal; */
NS_IMETHODIMP nsLoadInfo::GetTriggeringPrincipal(nsIPrincipal * *aTriggeringPrincipal)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* [binaryname(TriggeringPrincipal),noscript,nostdcall,notxpcom] nsIPrincipal binaryTriggeringPrincipal (); */
nsIPrincipal * nsLoadInfo::TriggeringPrincipal()
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* readonly attribute nsIDOMDocument loadingDocument; */
NS_IMETHODIMP nsLoadInfo::GetLoadingDocument(nsIDOMDocument * *aLoadingDocument)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* [binaryname(LoadingNode),noscript,nostdcall,notxpcom] nsINode binaryLoadingNode (); */
nsINode * nsLoadInfo::LoadingNode()
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* readonly attribute nsSecurityFlags securityFlags; */
NS_IMETHODIMP nsLoadInfo::GetSecurityFlags(nsSecurityFlags *aSecurityFlags)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* [infallible] readonly attribute boolean forceInheritPrincipal; */
NS_IMETHODIMP nsLoadInfo::GetForceInheritPrincipal(bool *aForceInheritPrincipal)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* [infallible] readonly attribute boolean loadingSandboxed; */
NS_IMETHODIMP nsLoadInfo::GetLoadingSandboxed(bool *aLoadingSandboxed)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* readonly attribute nsContentPolicyType contentPolicyType; */
NS_IMETHODIMP nsLoadInfo::GetContentPolicyType(nsContentPolicyType *aContentPolicyType)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* readonly attribute nsIURI baseURI; */
NS_IMETHODIMP nsLoadInfo::GetBaseURI(nsIURI * *aBaseURI)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* [binaryname(BaseURI),noscript,nostdcall,notxpcom] nsIURI binaryBaseURI (); */
nsIURI * nsLoadInfo::BaseURI()
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* readonly attribute unsigned long innerWindowID; */
NS_IMETHODIMP nsLoadInfo::GetInnerWindowID(uint32_t *aInnerWindowID)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* End of implementation class template. */
#endif
#endif /* __gen_nsILoadInfo_h__ */
|