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

Unified Diff: chrome/common/extensions/api/file_system_provider.idl

Issue 547313002: [fsp] Use auto generated methods for generating dictionaries. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebased. Created 6 years, 3 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 | « chrome/browser/chromeos/file_system_provider/operations/write_file_unittest.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/common/extensions/api/file_system_provider.idl
diff --git a/chrome/common/extensions/api/file_system_provider.idl b/chrome/common/extensions/api/file_system_provider.idl
index 6d3e7e96f76956f89683668d6ecd805d8c32d746..c74c5623d5d4ba76cd36909ce037bd7f32f7dc3d 100644
--- a/chrome/common/extensions/api/file_system_provider.idl
+++ b/chrome/common/extensions/api/file_system_provider.idl
@@ -300,25 +300,28 @@ namespace fileSystemProvider {
[nocompile] callback ErrorCallback = void([instanceOf=DOMError] object error);
// Callback to be called by the providing extension in case of a success.
- callback ProviderSuccessCallback = void();
+ [nocompile] callback ProviderSuccessCallback = void();
// Callback to be called by the providing extension in case of an error.
- callback ProviderErrorCallback = void(ProviderError error);
+ [nocompile] callback ProviderErrorCallback = void(ProviderError error);
// Success callback for the <code>onGetMetadataRequested</code> event.
- callback MetadataCallback = void(EntryMetadata metadata);
+ [nocompile] callback MetadataCallback = void(
+ EntryMetadata metadata);
// Success callback for the <code>onReadDirectoryRequested</code> event. If
// more entries will be returned, then <code>hasMore</code> must be true, and
// it has to be called again with additional entries. If no more entries are
// available, then <code>hasMore</code> must be set to false.
- callback EntriesCallback = void(EntryMetadata[] entries, boolean hasMore);
+ [nocompile] callback EntriesCallback = void(
+ EntryMetadata[] entries, boolean hasMore);
// Success callback for the <code>onReadFileRequested</code> event. If more
// data will be returned, then <code>hasMore</code> must be true, and it
// has to be called again with additional entries. If no more data is
// available, then <code>hasMore</code> must be set to false.
- callback FileDataCallback = void(ArrayBuffer data, boolean hasMore);
+ [nocompile] callback FileDataCallback = void(
+ ArrayBuffer data, boolean hasMore);
interface Functions {
// Mounts a file system with the given <code>fileSystemId</code> and <code>
« no previous file with comments | « chrome/browser/chromeos/file_system_provider/operations/write_file_unittest.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698