/usr/include/thunderbird/nsIDOMFile.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 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 | /*
* DO NOT EDIT. THIS FILE IS GENERATED FROM ../../../dist/idl/nsIDOMFile.idl
*/
#ifndef __gen_nsIDOMFile_h__
#define __gen_nsIDOMFile_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 {
namespace dom {
namespace indexedDB {
class FileInfo;
class FileManager;
}
}
}
class nsIDOMFileError; /* forward declaration */
class nsIInputStream; /* forward declaration */
class nsIURI; /* forward declaration */
class nsIPrincipal; /* forward declaration */
class nsIDOMBlob; /* forward declaration */
/* starting interface: nsIDOMBlob */
#define NS_IDOMBLOB_IID_STR "6ef56697-7c9c-41ac-83df-e01c079fb1d1"
#define NS_IDOMBLOB_IID \
{0x6ef56697, 0x7c9c, 0x41ac, \
{ 0x83, 0xdf, 0xe0, 0x1c, 0x07, 0x9f, 0xb1, 0xd1 }}
class NS_NO_VTABLE nsIDOMBlob : public nsISupports {
public:
NS_DECLARE_STATIC_IID_ACCESSOR(NS_IDOMBLOB_IID)
/* readonly attribute unsigned long long size; */
NS_IMETHOD GetSize(uint64_t *aSize) = 0;
/* readonly attribute DOMString type; */
NS_IMETHOD GetType(nsAString & aType) = 0;
/* [noscript] readonly attribute nsIInputStream internalStream; */
NS_IMETHOD GetInternalStream(nsIInputStream * *aInternalStream) = 0;
/* [optional_argc] nsIDOMBlob slice ([optional] in long long start, [optional] in long long end, [optional] in DOMString contentType); */
NS_IMETHOD Slice(int64_t start, int64_t end, const nsAString & contentType, uint8_t _argc, nsIDOMBlob * *_retval) = 0;
/* [notxpcom] long long getFileId (); */
NS_IMETHOD_(int64_t) GetFileId(void) = 0;
/* [notxpcom] void addFileInfo (in FileInfo aFileInfo); */
NS_IMETHOD_(void) AddFileInfo(mozilla::dom::indexedDB::FileInfo *aFileInfo) = 0;
/* [notxpcom] FileInfo getFileInfo (in FileManager aFileManager); */
NS_IMETHOD_(mozilla::dom::indexedDB::FileInfo *) GetFileInfo(mozilla::dom::indexedDB::FileManager *aFileManager) = 0;
/* [notxpcom] bool isMemoryFile (); */
NS_IMETHOD_(bool) IsMemoryFile(void) = 0;
};
NS_DEFINE_STATIC_IID_ACCESSOR(nsIDOMBlob, NS_IDOMBLOB_IID)
/* Use this macro when declaring classes that implement this interface. */
#define NS_DECL_NSIDOMBLOB \
NS_IMETHOD GetSize(uint64_t *aSize) override; \
NS_IMETHOD GetType(nsAString & aType) override; \
NS_IMETHOD GetInternalStream(nsIInputStream * *aInternalStream) override; \
NS_IMETHOD Slice(int64_t start, int64_t end, const nsAString & contentType, uint8_t _argc, nsIDOMBlob * *_retval) override; \
NS_IMETHOD_(int64_t) GetFileId(void) override; \
NS_IMETHOD_(void) AddFileInfo(mozilla::dom::indexedDB::FileInfo *aFileInfo) override; \
NS_IMETHOD_(mozilla::dom::indexedDB::FileInfo *) GetFileInfo(mozilla::dom::indexedDB::FileManager *aFileManager) override; \
NS_IMETHOD_(bool) IsMemoryFile(void) override;
/* Use this macro to declare functions that forward the behavior of this interface to another object. */
#define NS_FORWARD_NSIDOMBLOB(_to) \
NS_IMETHOD GetSize(uint64_t *aSize) override { return _to GetSize(aSize); } \
NS_IMETHOD GetType(nsAString & aType) override { return _to GetType(aType); } \
NS_IMETHOD GetInternalStream(nsIInputStream * *aInternalStream) override { return _to GetInternalStream(aInternalStream); } \
NS_IMETHOD Slice(int64_t start, int64_t end, const nsAString & contentType, uint8_t _argc, nsIDOMBlob * *_retval) override { return _to Slice(start, end, contentType, _argc, _retval); } \
NS_IMETHOD_(int64_t) GetFileId(void) override { return _to GetFileId(); } \
NS_IMETHOD_(void) AddFileInfo(mozilla::dom::indexedDB::FileInfo *aFileInfo) override { return _to AddFileInfo(aFileInfo); } \
NS_IMETHOD_(mozilla::dom::indexedDB::FileInfo *) GetFileInfo(mozilla::dom::indexedDB::FileManager *aFileManager) override { return _to GetFileInfo(aFileManager); } \
NS_IMETHOD_(bool) IsMemoryFile(void) override { return _to IsMemoryFile(); }
/* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
#define NS_FORWARD_SAFE_NSIDOMBLOB(_to) \
NS_IMETHOD GetSize(uint64_t *aSize) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetSize(aSize); } \
NS_IMETHOD GetType(nsAString & aType) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetType(aType); } \
NS_IMETHOD GetInternalStream(nsIInputStream * *aInternalStream) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetInternalStream(aInternalStream); } \
NS_IMETHOD Slice(int64_t start, int64_t end, const nsAString & contentType, uint8_t _argc, nsIDOMBlob * *_retval) override { return !_to ? NS_ERROR_NULL_POINTER : _to->Slice(start, end, contentType, _argc, _retval); } \
NS_IMETHOD_(int64_t) GetFileId(void) override; \
NS_IMETHOD_(void) AddFileInfo(mozilla::dom::indexedDB::FileInfo *aFileInfo) override; \
NS_IMETHOD_(mozilla::dom::indexedDB::FileInfo *) GetFileInfo(mozilla::dom::indexedDB::FileManager *aFileManager) override; \
NS_IMETHOD_(bool) IsMemoryFile(void) override;
#if 0
/* Use the code below as a template for the implementation class for this interface. */
/* Header file */
class nsDOMBlob : public nsIDOMBlob
{
public:
NS_DECL_ISUPPORTS
NS_DECL_NSIDOMBLOB
nsDOMBlob();
private:
~nsDOMBlob();
protected:
/* additional members */
};
/* Implementation file */
NS_IMPL_ISUPPORTS(nsDOMBlob, nsIDOMBlob)
nsDOMBlob::nsDOMBlob()
{
/* member initializers and constructor code */
}
nsDOMBlob::~nsDOMBlob()
{
/* destructor code */
}
/* readonly attribute unsigned long long size; */
NS_IMETHODIMP nsDOMBlob::GetSize(uint64_t *aSize)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* readonly attribute DOMString type; */
NS_IMETHODIMP nsDOMBlob::GetType(nsAString & aType)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* [noscript] readonly attribute nsIInputStream internalStream; */
NS_IMETHODIMP nsDOMBlob::GetInternalStream(nsIInputStream * *aInternalStream)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* [optional_argc] nsIDOMBlob slice ([optional] in long long start, [optional] in long long end, [optional] in DOMString contentType); */
NS_IMETHODIMP nsDOMBlob::Slice(int64_t start, int64_t end, const nsAString & contentType, uint8_t _argc, nsIDOMBlob * *_retval)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* [notxpcom] long long getFileId (); */
NS_IMETHODIMP_(int64_t) nsDOMBlob::GetFileId()
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* [notxpcom] void addFileInfo (in FileInfo aFileInfo); */
NS_IMETHODIMP_(void) nsDOMBlob::AddFileInfo(mozilla::dom::indexedDB::FileInfo *aFileInfo)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* [notxpcom] FileInfo getFileInfo (in FileManager aFileManager); */
NS_IMETHODIMP_(mozilla::dom::indexedDB::FileInfo *) nsDOMBlob::GetFileInfo(mozilla::dom::indexedDB::FileManager *aFileManager)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* [notxpcom] bool isMemoryFile (); */
NS_IMETHODIMP_(bool) nsDOMBlob::IsMemoryFile()
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* End of implementation class template. */
#endif
/* starting interface: nsIDOMFile */
#define NS_IDOMFILE_IID_STR "4e7d1a8b-e2d5-4304-a753-4affb731660c"
#define NS_IDOMFILE_IID \
{0x4e7d1a8b, 0xe2d5, 0x4304, \
{ 0xa7, 0x53, 0x4a, 0xff, 0xb7, 0x31, 0x66, 0x0c }}
class NS_NO_VTABLE nsIDOMFile : public nsIDOMBlob {
public:
NS_DECLARE_STATIC_IID_ACCESSOR(NS_IDOMFILE_IID)
/* readonly attribute DOMString name; */
NS_IMETHOD GetName(nsAString & aName) = 0;
/* readonly attribute DOMString path; */
NS_IMETHOD GetPath(nsAString & aPath) = 0;
/* [implicit_jscontext] readonly attribute jsval lastModifiedDate; */
NS_IMETHOD GetLastModifiedDate(JSContext* cx, JS::MutableHandleValue aLastModifiedDate) = 0;
/* readonly attribute DOMString mozFullPath; */
NS_IMETHOD GetMozFullPath(nsAString & aMozFullPath) = 0;
/* [noscript] readonly attribute DOMString mozFullPathInternal; */
NS_IMETHOD GetMozFullPathInternal(nsAString & aMozFullPathInternal) = 0;
/* [noscript] readonly attribute uint64_t mozLastModifiedDate; */
NS_IMETHOD GetMozLastModifiedDate(uint64_t *aMozLastModifiedDate) = 0;
};
NS_DEFINE_STATIC_IID_ACCESSOR(nsIDOMFile, NS_IDOMFILE_IID)
/* Use this macro when declaring classes that implement this interface. */
#define NS_DECL_NSIDOMFILE \
NS_IMETHOD GetName(nsAString & aName) override; \
NS_IMETHOD GetPath(nsAString & aPath) override; \
NS_IMETHOD GetLastModifiedDate(JSContext* cx, JS::MutableHandleValue aLastModifiedDate) override; \
NS_IMETHOD GetMozFullPath(nsAString & aMozFullPath) override; \
NS_IMETHOD GetMozFullPathInternal(nsAString & aMozFullPathInternal) override; \
NS_IMETHOD GetMozLastModifiedDate(uint64_t *aMozLastModifiedDate) override;
/* Use this macro to declare functions that forward the behavior of this interface to another object. */
#define NS_FORWARD_NSIDOMFILE(_to) \
NS_IMETHOD GetName(nsAString & aName) override { return _to GetName(aName); } \
NS_IMETHOD GetPath(nsAString & aPath) override { return _to GetPath(aPath); } \
NS_IMETHOD GetLastModifiedDate(JSContext* cx, JS::MutableHandleValue aLastModifiedDate) override { return _to GetLastModifiedDate(cx, aLastModifiedDate); } \
NS_IMETHOD GetMozFullPath(nsAString & aMozFullPath) override { return _to GetMozFullPath(aMozFullPath); } \
NS_IMETHOD GetMozFullPathInternal(nsAString & aMozFullPathInternal) override { return _to GetMozFullPathInternal(aMozFullPathInternal); } \
NS_IMETHOD GetMozLastModifiedDate(uint64_t *aMozLastModifiedDate) override { return _to GetMozLastModifiedDate(aMozLastModifiedDate); }
/* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
#define NS_FORWARD_SAFE_NSIDOMFILE(_to) \
NS_IMETHOD GetName(nsAString & aName) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetName(aName); } \
NS_IMETHOD GetPath(nsAString & aPath) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetPath(aPath); } \
NS_IMETHOD GetLastModifiedDate(JSContext* cx, JS::MutableHandleValue aLastModifiedDate) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetLastModifiedDate(cx, aLastModifiedDate); } \
NS_IMETHOD GetMozFullPath(nsAString & aMozFullPath) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetMozFullPath(aMozFullPath); } \
NS_IMETHOD GetMozFullPathInternal(nsAString & aMozFullPathInternal) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetMozFullPathInternal(aMozFullPathInternal); } \
NS_IMETHOD GetMozLastModifiedDate(uint64_t *aMozLastModifiedDate) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetMozLastModifiedDate(aMozLastModifiedDate); }
#if 0
/* Use the code below as a template for the implementation class for this interface. */
/* Header file */
class nsDOMFile : public nsIDOMFile
{
public:
NS_DECL_ISUPPORTS
NS_DECL_NSIDOMFILE
nsDOMFile();
private:
~nsDOMFile();
protected:
/* additional members */
};
/* Implementation file */
NS_IMPL_ISUPPORTS(nsDOMFile, nsIDOMFile)
nsDOMFile::nsDOMFile()
{
/* member initializers and constructor code */
}
nsDOMFile::~nsDOMFile()
{
/* destructor code */
}
/* readonly attribute DOMString name; */
NS_IMETHODIMP nsDOMFile::GetName(nsAString & aName)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* readonly attribute DOMString path; */
NS_IMETHODIMP nsDOMFile::GetPath(nsAString & aPath)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* [implicit_jscontext] readonly attribute jsval lastModifiedDate; */
NS_IMETHODIMP nsDOMFile::GetLastModifiedDate(JSContext* cx, JS::MutableHandleValue aLastModifiedDate)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* readonly attribute DOMString mozFullPath; */
NS_IMETHODIMP nsDOMFile::GetMozFullPath(nsAString & aMozFullPath)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* [noscript] readonly attribute DOMString mozFullPathInternal; */
NS_IMETHODIMP nsDOMFile::GetMozFullPathInternal(nsAString & aMozFullPathInternal)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* [noscript] readonly attribute uint64_t mozLastModifiedDate; */
NS_IMETHODIMP nsDOMFile::GetMozLastModifiedDate(uint64_t *aMozLastModifiedDate)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* End of implementation class template. */
#endif
#endif /* __gen_nsIDOMFile_h__ */
|