2012-12-12 01:21:03 +04:00
|
|
|
/* -*- Mode: IDL; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this file,
|
|
|
|
* You can obtain one at http://mozilla.org/MPL/2.0/.
|
2016-05-31 18:23:57 +03:00
|
|
|
*
|
|
|
|
* The origin of this IDL file is
|
|
|
|
* https://w3c.github.io/FileAPI/#file
|
2012-12-12 01:21:03 +04:00
|
|
|
*/
|
|
|
|
|
2014-10-08 20:15:22 +04:00
|
|
|
interface nsIFile;
|
|
|
|
|
2016-06-01 13:33:09 +03:00
|
|
|
[Constructor(sequence<BlobPart> fileBits,
|
2014-11-20 14:58:00 +03:00
|
|
|
USVString fileName, optional FilePropertyBag options),
|
2014-10-08 20:15:22 +04:00
|
|
|
|
|
|
|
// These constructors are just for chrome callers:
|
2014-10-08 20:15:23 +04:00
|
|
|
Constructor(Blob fileBits, optional ChromeFilePropertyBag options),
|
|
|
|
Constructor(nsIFile fileBits, optional ChromeFilePropertyBag options),
|
2014-11-20 14:58:00 +03:00
|
|
|
Constructor(USVString fileBits, optional ChromeFilePropertyBag options),
|
2014-10-08 20:15:22 +04:00
|
|
|
|
|
|
|
Exposed=(Window,Worker)]
|
|
|
|
interface File : Blob {
|
|
|
|
readonly attribute DOMString name;
|
|
|
|
|
|
|
|
[GetterThrows]
|
|
|
|
readonly attribute long long lastModified;
|
|
|
|
};
|
|
|
|
|
|
|
|
dictionary FilePropertyBag {
|
2016-05-31 18:23:57 +03:00
|
|
|
DOMString type = "";
|
|
|
|
long long lastModified;
|
2014-10-08 20:15:22 +04:00
|
|
|
};
|
|
|
|
|
2014-10-08 20:15:23 +04:00
|
|
|
dictionary ChromeFilePropertyBag : FilePropertyBag {
|
2016-05-31 18:23:57 +03:00
|
|
|
DOMString name = "";
|
|
|
|
boolean temporary = false;
|
2014-10-08 20:15:23 +04:00
|
|
|
};
|
|
|
|
|
2014-10-08 20:15:22 +04:00
|
|
|
// Mozilla extensions
|
|
|
|
partial interface File {
|
2016-05-31 18:22:39 +03:00
|
|
|
[GetterThrows, Deprecated="FileLastModifiedDate"]
|
2014-10-08 20:15:22 +04:00
|
|
|
readonly attribute Date lastModifiedDate;
|
|
|
|
|
2016-05-13 14:11:38 +03:00
|
|
|
[BinaryName="path", Func="mozilla::dom::Directory::WebkitBlinkDirectoryPickerEnabled"]
|
|
|
|
readonly attribute DOMString webkitRelativePath;
|
2014-10-08 20:15:22 +04:00
|
|
|
|
2015-05-18 16:51:54 +03:00
|
|
|
[GetterThrows, ChromeOnly]
|
|
|
|
readonly attribute DOMString mozFullPath;
|
2012-12-12 01:21:03 +04:00
|
|
|
};
|