summaryrefslogtreecommitdiffstats
path: root/chrome/common/extensions/api/file_system_provider.idl
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/common/extensions/api/file_system_provider.idl')
-rw-r--r--chrome/common/extensions/api/file_system_provider.idl9
1 files changed, 5 insertions, 4 deletions
diff --git a/chrome/common/extensions/api/file_system_provider.idl b/chrome/common/extensions/api/file_system_provider.idl
index 1908c18..b6ab86d 100644
--- a/chrome/common/extensions/api/file_system_provider.idl
+++ b/chrome/common/extensions/api/file_system_provider.idl
@@ -61,11 +61,12 @@ namespace fileSystemProvider {
// it must be empty.
DOMString name;
- // File size in bytes.
- double size;
+ // File size in bytes. Required for <code>OnGetMetadataRequested</code>.
+ double? size;
- // The last modified time of this entry.
- [instanceOf=Date] object modificationTime;
+ // The last modified time of this entry. Required for
+ // <code>OnGetMetadataRequested</code>.
+ [instanceOf=Date] object? modificationTime;
// Mime type for the entry.
DOMString? mimeType;