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

Unified Diff: Source/modules/filesystem/DirectoryEntry.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/DOMWindowFileSystem.idl ('k') | Source/modules/filesystem/DirectoryReader.idl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/filesystem/DirectoryEntry.idl
diff --git a/Source/modules/filesystem/DirectoryEntry.idl b/Source/modules/filesystem/DirectoryEntry.idl
index 9a44cf6215fd1edd4ba4cc3fe8947abc743379c4..f77a4e95a5495473d362be5f4fd8365e313d2f0a 100644
--- a/Source/modules/filesystem/DirectoryEntry.idl
+++ b/Source/modules/filesystem/DirectoryEntry.idl
@@ -30,7 +30,7 @@
interface DirectoryEntry : Entry {
DirectoryReader createReader();
- void getFile([TreatNullAs=NullString, TreatUndefinedAs=NullString] DOMString path, optional Dictionary options, [Callback] optional EntryCallback successCallback, [Callback] optional ErrorCallback errorCallback);
- void getDirectory([TreatNullAs=NullString, TreatUndefinedAs=NullString] DOMString path, optional Dictionary options, [Callback] optional EntryCallback successCallback, [Callback] optional ErrorCallback errorCallback);
- void removeRecursively([Callback] VoidCallback successCallback, [Callback] optional ErrorCallback errorCallback);
+ void getFile([TreatNullAs=NullString, TreatUndefinedAs=NullString] DOMString path, optional Dictionary options, optional EntryCallback successCallback, optional ErrorCallback errorCallback);
+ void getDirectory([TreatNullAs=NullString, TreatUndefinedAs=NullString] DOMString path, optional Dictionary options, optional EntryCallback successCallback, optional ErrorCallback errorCallback);
+ void removeRecursively(VoidCallback successCallback, optional ErrorCallback errorCallback);
};
« no previous file with comments | « Source/modules/filesystem/DOMWindowFileSystem.idl ('k') | Source/modules/filesystem/DirectoryReader.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698