Chromium Code Reviews| Index: chrome/common/extensions/api/file_browser_private.idl |
| diff --git a/chrome/common/extensions/api/file_browser_private.idl b/chrome/common/extensions/api/file_browser_private.idl |
| index 5efd19a0ac36f09309a49dc99d86d6766e0ea809..189f45c089603e8dce1798dccd348995d8fff8a9 100644 |
| --- a/chrome/common/extensions/api/file_browser_private.idl |
| +++ b/chrome/common/extensions/api/file_browser_private.idl |
| @@ -46,7 +46,7 @@ enum MountCompletedStatus { |
| }; |
| // File transfer progress state. |
| -enum TransferState { started, in_progress, completed, failed }; |
| +enum TransferState { added, started, in_progress, completed, failed }; |
| // Defines file transfer direction. |
| enum TransferType { upload, download }; |
| @@ -322,6 +322,9 @@ dictionary FileTransferStatus { |
| // Approximated total size of transfer operation. |
| double? total; |
| + |
| + // Total number of jobs. |
| + double? num_total_jobs; |
|
hirono
2014/08/27 08:37:20
The reason why we use double for number of bytes i
iseki
2014/08/28 07:13:32
Done.
|
| }; |
| // Error during the drive sync. |