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

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

Issue 1480363003: Eliminate [LegacyInterfaceTypeChecking] for modules/filesystem bindings (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Scope to safe changes Created 5 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/EntrySync.idl
diff --git a/third_party/WebKit/Source/modules/filesystem/EntrySync.idl b/third_party/WebKit/Source/modules/filesystem/EntrySync.idl
index 2f3b37f55c04f81a568ba92952bd5b25bc57b4fa..e574cbcdb3c27c9ba7119add222033dc0963b5aa 100644
--- a/third_party/WebKit/Source/modules/filesystem/EntrySync.idl
+++ b/third_party/WebKit/Source/modules/filesystem/EntrySync.idl
@@ -39,8 +39,8 @@
readonly attribute DOMFileSystemSync filesystem;
[RaisesException] Metadata getMetadata();
- [RaisesException, LegacyInterfaceTypeChecking] EntrySync moveTo(DirectoryEntrySync parent, [TreatUndefinedAs=NullString] DOMString? name);
- [RaisesException, LegacyInterfaceTypeChecking] EntrySync copyTo(DirectoryEntrySync parent, [TreatUndefinedAs=NullString] DOMString? name);
+ [RaisesException] EntrySync moveTo(DirectoryEntrySync parent, [TreatUndefinedAs=NullString] DOMString? name);
+ [RaisesException] EntrySync copyTo(DirectoryEntrySync parent, [TreatUndefinedAs=NullString] DOMString? name);
DOMString toURL();
[RaisesException] void remove();
DirectoryEntrySync getParent();

Powered by Google App Engine
This is Rietveld 408576698