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

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

Issue 2380383003: Use sequence<T> instead of T[] where possible and document exceptions (Closed)
Patch Set: more Created 4 years, 2 months 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 cd7bf1fb6e1f1fac5898a80017691c32d6cf9f46..2422250a8dda077b02aac429f5cad719108b69a0 100644
--- a/third_party/WebKit/Source/modules/filesystem/HTMLInputElementFileSystem.idl
+++ b/third_party/WebKit/Source/modules/filesystem/HTMLInputElementFileSystem.idl
@@ -28,8 +28,11 @@
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
+// https://wicg.github.io/entries-api/#html-forms
+
[
RuntimeEnabled=FileSystem,
] partial interface HTMLInputElement {
+ // TODO(jsbell): |webkitEntries| should be FrozenArray<Entry>.
jsbell 2016/10/03 16:41:47 Did you try switching and note failures? Or just n
foolip 2016/10/04 10:02:20 I thought it'd be easier to not change the generat
foolip 2016/10/04 10:12:27 Actually, I won't, not today. Each case is differe
[CallWith=ExecutionContext, Measure] readonly attribute Entry[] webkitEntries;
};

Powered by Google App Engine
This is Rietveld 408576698