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

Unified Diff: third_party/WebKit/Source/modules/filesystem/HTMLInputElementFileSystem.idl

Issue 2297043002: Web expose FileSystemFileEntry, FileSystemDirectoryEntry and friends (Closed)
Patch Set: Rebased Created 4 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: third_party/WebKit/Source/modules/filesystem/HTMLInputElementFileSystem.idl
diff --git a/third_party/WebKit/Source/modules/filesystem/HTMLInputElementFileSystem.idl b/third_party/WebKit/Source/modules/filesystem/HTMLInputElementFileSystem.idl
index 2422250a8dda077b02aac429f5cad719108b69a0..98639e3134b8bca0c5e67d1f17e05c400f92e636 100644
--- a/third_party/WebKit/Source/modules/filesystem/HTMLInputElementFileSystem.idl
+++ b/third_party/WebKit/Source/modules/filesystem/HTMLInputElementFileSystem.idl
@@ -29,10 +29,9 @@
*/
// https://wicg.github.io/entries-api/#html-forms
-
[
RuntimeEnabled=FileSystem,
] partial interface HTMLInputElement {
- // TODO(jsbell): |webkitEntries| should be FrozenArray<Entry>.
- [CallWith=ExecutionContext, Measure] readonly attribute Entry[] webkitEntries;
+ // TODO(jsbell): Use FrozenArray<FileSystemEntry>
+ [CallWith=ExecutionContext, Measure] readonly attribute FileSystemEntry[] webkitEntries;
};

Powered by Google App Engine
This is Rietveld 408576698