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

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

Issue 2380383003: Use sequence<T> instead of T[] where possible and document exceptions (Closed)
Patch Set: address feedback 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/EntriesCallback.idl
diff --git a/third_party/WebKit/Source/modules/filesystem/EntriesCallback.idl b/third_party/WebKit/Source/modules/filesystem/EntriesCallback.idl
index ba3cca92091aaf5d5cd91257c699e85a1f9ee2b8..4feb15c4d1e624a8278a2bae31f862d9df7c45ad 100644
--- a/third_party/WebKit/Source/modules/filesystem/EntriesCallback.idl
+++ b/third_party/WebKit/Source/modules/filesystem/EntriesCallback.idl
@@ -29,5 +29,5 @@
*/
callback interface EntriesCallback {
- void handleEvent(Entry[] entries);
+ void handleEvent(sequence<Entry> entries);
};

Powered by Google App Engine
This is Rietveld 408576698