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

Unified Diff: Source/modules/filesystem/DOMWindowFileSystem.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/core/page/DOMWindow.idl ('k') | Source/modules/filesystem/DirectoryEntry.idl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/filesystem/DOMWindowFileSystem.idl
diff --git a/Source/modules/filesystem/DOMWindowFileSystem.idl b/Source/modules/filesystem/DOMWindowFileSystem.idl
index f8969df12cef3087af86fa487eedb23e5a29bdd1..c42fe21b26b12d9b52122035d9b4fa811f61cf4e 100644
--- a/Source/modules/filesystem/DOMWindowFileSystem.idl
+++ b/Source/modules/filesystem/DOMWindowFileSystem.idl
@@ -29,8 +29,8 @@ partial interface DOMWindow {
const unsigned short PERSISTENT = 1;
[EnabledAtRuntime=FileSystem] void webkitRequestFileSystem(unsigned short type, long long size,
- [Callback] FileSystemCallback successCallback, [Callback] optional ErrorCallback errorCallback);
+ FileSystemCallback successCallback, optional ErrorCallback errorCallback);
[EnabledAtRuntime=FileSystem] void webkitResolveLocalFileSystemURL(DOMString url,
- [Callback] EntryCallback successCallback, [Callback] optional ErrorCallback errorCallback);
+ EntryCallback successCallback, optional ErrorCallback errorCallback);
};
« no previous file with comments | « Source/core/page/DOMWindow.idl ('k') | Source/modules/filesystem/DirectoryEntry.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698