2012-12-11 21:21:03 +00: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/.
|
|
|
|
*/
|
|
|
|
|
2014-10-08 16:15:22 +00:00
|
|
|
interface nsIFile;
|
|
|
|
|
|
|
|
[Constructor(sequence<(ArrayBuffer or ArrayBufferView or Blob or DOMString)> fileBits,
|
2014-11-20 11:58:00 +00:00
|
|
|
USVString fileName, optional FilePropertyBag options),
|
2014-10-08 16:15:22 +00:00
|
|
|
|
|
|
|
// These constructors are just for chrome callers:
|
2014-10-08 16:15:23 +00:00
|
|
|
Constructor(Blob fileBits, optional ChromeFilePropertyBag options),
|
|
|
|
Constructor(nsIFile fileBits, optional ChromeFilePropertyBag options),
|
2014-11-20 11:58:00 +00:00
|
|
|
Constructor(USVString fileBits, optional ChromeFilePropertyBag options),
|
2014-10-08 16:15:22 +00:00
|
|
|
|
|
|
|
Exposed=(Window,Worker)]
|
|
|
|
interface File : Blob {
|
|
|
|
|
|
|
|
readonly attribute DOMString name;
|
|
|
|
|
|
|
|
[GetterThrows]
|
|
|
|
readonly attribute long long lastModified;
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
dictionary FilePropertyBag {
|
|
|
|
|
|
|
|
DOMString type = "";
|
|
|
|
long long lastModified;
|
|
|
|
|
|
|
|
};
|
|
|
|
|
2014-10-08 16:15:23 +00:00
|
|
|
dictionary ChromeFilePropertyBag : FilePropertyBag {
|
|
|
|
|
|
|
|
DOMString name = "";
|
2014-10-15 05:55:14 +00:00
|
|
|
boolean temporary = false;
|
2014-10-08 16:15:23 +00:00
|
|
|
};
|
|
|
|
|
2014-10-08 16:15:22 +00:00
|
|
|
// Mozilla extensions
|
|
|
|
partial interface File {
|
|
|
|
|
|
|
|
[GetterThrows]
|
|
|
|
readonly attribute Date lastModifiedDate;
|
|
|
|
|
2014-10-10 15:59:56 +00:00
|
|
|
[GetterThrows, ChromeOnly]
|
2014-10-08 16:15:22 +00:00
|
|
|
readonly attribute DOMString mozFullPath;
|
|
|
|
|
2012-12-11 21:21:03 +00:00
|
|
|
};
|