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

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

Issue 2569993003: Low risk non-nullable => nullable change (Closed)
Patch Set: Created 4 years 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/DataTransferItemFileSystem.idl
diff --git a/third_party/WebKit/Source/modules/filesystem/DataTransferItemFileSystem.idl b/third_party/WebKit/Source/modules/filesystem/DataTransferItemFileSystem.idl
index 19ec070c3e5d04868286a584350ab08c2c777f6a..0593ea975b31a0ed519eeca4359b6d5ee7689f1c 100644
--- a/third_party/WebKit/Source/modules/filesystem/DataTransferItemFileSystem.idl
+++ b/third_party/WebKit/Source/modules/filesystem/DataTransferItemFileSystem.idl
@@ -28,6 +28,8 @@
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
+// https://html.spec.whatwg.org/multipage/interaction.html#datatransferitem
foolip 2016/12/13 22:37:31 This should link to https://wicg.github.io/entries
lunalu1 2016/12/14 11:00:14 Done.
+
partial interface DataTransferItem {
- [CallWith=ExecutionContext, Measure] Entry webkitGetAsEntry();
+ [CallWith=ExecutionContext, Measure] Entry? webkitGetAsEntry();
};

Powered by Google App Engine
This is Rietveld 408576698