Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1033)

Unified Diff: Source/core/fileapi/File.idl

Issue 57483002: Implement File constructor. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 7 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: Source/core/fileapi/File.idl
diff --git a/Source/core/fileapi/File.idl b/Source/core/fileapi/File.idl
index 56be7fcc6740aca782d455f172a30659619e4ee7..d59fcdb44b1d04423ec7379e4698a1408cbdc3bf 100644
--- a/Source/core/fileapi/File.idl
+++ b/Source/core/fileapi/File.idl
@@ -23,7 +23,11 @@
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
-interface File : Blob {
+[
+ GlobalContext=Window&WorkerGlobalScope,
+ CustomConstructor,
Inactive 2013/11/04 14:13:11 There is no File constructor that takes no argumen
pwnall-personal 2013/11/04 17:16:25 Done. I also tweaked the IDL for the Blob construc
+ CustomConstructor(sequence<any> blobParts, DOMString fileName, optional BlobPropertyBag options)
+] interface File : Blob {
readonly attribute DOMString name;
readonly attribute Date lastModifiedDate;
[RuntimeEnabled=DirectoryUpload] readonly attribute DOMString webkitRelativePath;

Powered by Google App Engine
This is Rietveld 408576698