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

Unified Diff: Source/modules/filesystem/Entry.idl

Issue 14384004: Get rid of [Callback] extended attribute for parameters in IDL files (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Fix whitespace issue in generated bindings Created 7 years, 8 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
« no previous file with comments | « Source/modules/filesystem/DirectoryReader.idl ('k') | Source/modules/filesystem/FileEntry.idl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/filesystem/Entry.idl
diff --git a/Source/modules/filesystem/Entry.idl b/Source/modules/filesystem/Entry.idl
index 4f4a316c5ea29d6037cf9567e32b8dfaa53d64f5..e6638abfbc3a0609fae25e2c12c8ae7a6b1d9c8f 100644
--- a/Source/modules/filesystem/Entry.idl
+++ b/Source/modules/filesystem/Entry.idl
@@ -37,10 +37,10 @@
readonly attribute DOMString fullPath;
readonly attribute DOMFileSystem filesystem;
- void getMetadata([Callback] MetadataCallback successCallback, [Callback] optional ErrorCallback errorCallback);
- void moveTo(DirectoryEntry parent, [TreatNullAs=NullString, TreatUndefinedAs=NullString] optional DOMString name, [Callback] optional EntryCallback successCallback, [Callback] optional ErrorCallback errorCallback);
- void copyTo(DirectoryEntry parent, [TreatNullAs=NullString, TreatUndefinedAs=NullString] optional DOMString name, [Callback] optional EntryCallback successCallback, [Callback] optional ErrorCallback errorCallback);
+ void getMetadata(MetadataCallback successCallback, optional ErrorCallback errorCallback);
+ void moveTo(DirectoryEntry parent, [TreatNullAs=NullString, TreatUndefinedAs=NullString] optional DOMString name, optional EntryCallback successCallback, optional ErrorCallback errorCallback);
+ void copyTo(DirectoryEntry parent, [TreatNullAs=NullString, TreatUndefinedAs=NullString] optional DOMString name, optional EntryCallback successCallback, optional ErrorCallback errorCallback);
DOMString toURL();
- void remove([Callback] VoidCallback successCallback, [Callback] optional ErrorCallback errorCallback);
- void getParent([Callback] optional EntryCallback successCallback, [Callback] optional ErrorCallback errorCallback);
+ void remove(VoidCallback successCallback, optional ErrorCallback errorCallback);
+ void getParent(optional EntryCallback successCallback, optional ErrorCallback errorCallback);
};
« no previous file with comments | « Source/modules/filesystem/DirectoryReader.idl ('k') | Source/modules/filesystem/FileEntry.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698