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

Unified Diff: Source/modules/filesystem/FileEntry.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/Entry.idl ('k') | Source/modules/filesystem/WorkerContextFileSystem.idl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/filesystem/FileEntry.idl
diff --git a/Source/modules/filesystem/FileEntry.idl b/Source/modules/filesystem/FileEntry.idl
index 4e8b09d2b755ebd04e35fe0e299917f354db5499..63bff0a1690314e10894645270686eef42dc600f 100644
--- a/Source/modules/filesystem/FileEntry.idl
+++ b/Source/modules/filesystem/FileEntry.idl
@@ -29,6 +29,6 @@
*/
interface FileEntry : Entry {
- void createWriter([Callback] FileWriterCallback successCallback, [Callback] optional ErrorCallback errorCallback);
- void file([Callback] FileCallback successCallback, [Callback] optional ErrorCallback errorCallback);
+ void createWriter(FileWriterCallback successCallback, optional ErrorCallback errorCallback);
+ void file(FileCallback successCallback, optional ErrorCallback errorCallback);
};
« no previous file with comments | « Source/modules/filesystem/Entry.idl ('k') | Source/modules/filesystem/WorkerContextFileSystem.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698