Chromium Code Reviews| Index: chrome/common/extensions/api/file_system.idl |
| diff --git a/chrome/common/extensions/api/file_system.idl b/chrome/common/extensions/api/file_system.idl |
| index ce56768fc01c72289d7edce0b21557b6e9dc83ec..73fba72d77654726d156dad65346a1320b481a23 100644 |
| --- a/chrome/common/extensions/api/file_system.idl |
| +++ b/chrome/common/extensions/api/file_system.idl |
| @@ -59,7 +59,7 @@ namespace fileSystem { |
| changed |
| }; |
| - dictionary ChooseEntryOptions { |
| + [nodoc] dictionary ChooseEntryOptions { |
|
benwells
2014/10/24 05:34:51
I think this one shouldn't change.
mtomasz
2014/10/24 05:36:42
Oops. Done.
|
| // Type of the prompt to show. The default is 'openFile'. |
| ChooseEntryType? type; |
| @@ -84,14 +84,14 @@ namespace fileSystem { |
| }; |
| // Change to an entry within a tracked directory. |
| - dictionary ChildChange { |
| + [nodoc] dictionary ChildChange { |
| [instanceOf=Entry] object entry; |
| ChildChangeType type; |
| }; |
| // Event notifying about a change in a file or a directory, including its |
| // contents. |
| - dictionary EntryChangedEvent { |
| + [nodoc] dictionary EntryChangedEvent { |
| // Tracked entry. |
| [instanceOf=Entry] object target; |
| @@ -101,7 +101,7 @@ namespace fileSystem { |
| }; |
| // Event notifying about a tracked file or a directory being removed. |
| - dictionary EntryRemovedEvent { |
| + [nodoc] dictionary EntryRemovedEvent { |
| [instanceOf=Entry] object target; |
| }; |
| @@ -112,7 +112,7 @@ namespace fileSystem { |
| [instanceOf=FileEntry] optional object[] fileEntries); |
| callback IsWritableCallback = void (boolean isWritable); |
| callback IsRestorableCallback = void (boolean isRestorable); |
| - callback GetObservedEntriesCallback = void ( |
| + [nodoc] callback GetObservedEntriesCallback = void ( |
| [instanceOf=Entry] object[] entries); |
| interface Functions { |