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

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

Issue 2464163005: Drop support for [TreatUndefinedAs=NullString] (Closed)
Patch Set: 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/DirectoryEntrySync.idl
diff --git a/third_party/WebKit/Source/modules/filesystem/DirectoryEntrySync.idl b/third_party/WebKit/Source/modules/filesystem/DirectoryEntrySync.idl
index 07de469566a6b9349e9ba1ee593f4f36d048913f..de7b5451948863ee76759ba7cdf55fc657c9b840 100644
--- a/third_party/WebKit/Source/modules/filesystem/DirectoryEntrySync.idl
+++ b/third_party/WebKit/Source/modules/filesystem/DirectoryEntrySync.idl
@@ -32,7 +32,7 @@
NoInterfaceObject
] interface DirectoryEntrySync : EntrySync {
DirectoryReaderSync createReader();
- [RaisesException] FileEntrySync getFile([TreatUndefinedAs=NullString] DOMString? path, FileSystemFlags flags);
- [RaisesException] DirectoryEntrySync getDirectory([TreatUndefinedAs=NullString] DOMString? path, FileSystemFlags flags);
+ [RaisesException] FileEntrySync getFile(DOMString? path, FileSystemFlags flags);
+ [RaisesException] DirectoryEntrySync getDirectory(DOMString? path, FileSystemFlags flags);
[RaisesException] void removeRecursively();
};

Powered by Google App Engine
This is Rietveld 408576698