2018-09-13 23:04:55 +03:00
|
|
|
/* -*- Mode: IDL; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2012-12-12 01:21:03 +04:00
|
|
|
/* 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
|
2019-01-22 12:29:49 +03:00
|
|
|
* https://wicg.github.io/entries-api
|
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,
|
2019-07-03 10:52:35 +03:00
|
|
|
USVString fileName, optional FilePropertyBag 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;
|
|
|
|
};
|
|
|
|
|
2018-10-27 11:26:31 +03:00
|
|
|
dictionary FilePropertyBag : BlobPropertyBag {
|
2016-05-31 18:23:57 +03:00
|
|
|
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 = "";
|
2017-03-03 11:42:54 +03:00
|
|
|
boolean existenceCheck = true;
|
2014-10-08 20:15:23 +04:00
|
|
|
};
|
|
|
|
|
2019-01-22 12:29:49 +03:00
|
|
|
// https://wicg.github.io/entries-api
|
2014-10-08 20:15:22 +04:00
|
|
|
partial interface File {
|
2019-06-13 12:01:41 +03:00
|
|
|
[BinaryName="relativePath", Pref="dom.webkitBlink.dirPicker.enabled"]
|
2016-11-03 09:55:17 +03:00
|
|
|
readonly attribute USVString webkitRelativePath;
|
2019-01-22 12:29:49 +03:00
|
|
|
};
|
2014-10-08 20:15:22 +04:00
|
|
|
|
2019-01-22 12:29:49 +03:00
|
|
|
// Mozilla extensions
|
|
|
|
partial interface File {
|
2017-02-01 23:43:37 +03:00
|
|
|
[GetterThrows, ChromeOnly, NeedsCallerType]
|
2015-05-18 16:51:54 +03:00
|
|
|
readonly attribute DOMString mozFullPath;
|
2017-02-23 05:23:51 +03:00
|
|
|
};
|
2016-11-11 20:56:44 +03:00
|
|
|
|
2017-03-21 13:11:06 +03:00
|
|
|
// Mozilla extensions
|
|
|
|
// These 2 methods can be used only in these conditions:
|
|
|
|
// - the main-thread
|
|
|
|
// - parent process OR file process OR, only for testing, with pref
|
|
|
|
// `dom.file.createInChild' set to true.
|
2017-02-23 05:23:51 +03:00
|
|
|
[Exposed=(Window)]
|
|
|
|
partial interface File {
|
2017-02-01 23:43:37 +03:00
|
|
|
[ChromeOnly, Throws, NeedsCallerType]
|
2017-02-08 12:18:32 +03:00
|
|
|
static Promise<File> createFromNsIFile(nsIFile file,
|
2019-07-03 10:52:35 +03:00
|
|
|
optional ChromeFilePropertyBag options = {});
|
2016-11-11 20:56:44 +03:00
|
|
|
|
2017-02-01 23:43:37 +03:00
|
|
|
[ChromeOnly, Throws, NeedsCallerType]
|
2017-02-08 12:18:32 +03:00
|
|
|
static Promise<File> createFromFileName(USVString fileName,
|
2019-07-03 10:52:35 +03:00
|
|
|
optional ChromeFilePropertyBag options = {});
|
2012-12-12 01:21:03 +04:00
|
|
|
};
|