| Index: chrome/common/extensions/api/file_manager_private.idl
|
| diff --git a/chrome/common/extensions/api/file_manager_private.idl b/chrome/common/extensions/api/file_manager_private.idl
|
| index 2431652fd2e29259a6f87aeebeee5ce2e9f56819..a1e3f0f2a81b611dd2f778b97c3010015799c9ac 100644
|
| --- a/chrome/common/extensions/api/file_manager_private.idl
|
| +++ b/chrome/common/extensions/api/file_manager_private.idl
|
| @@ -49,7 +49,7 @@ enum MountCompletedStatus {
|
| };
|
|
|
| // File transfer progress state.
|
| -enum TransferState { added, started, in_progress, completed, failed };
|
| +enum TransferState { in_progress, completed, failed };
|
|
|
| // Defines file transfer direction.
|
| enum TransferType { upload, download };
|
| @@ -352,10 +352,10 @@ dictionary FileTransferStatus {
|
| TransferType transferType;
|
|
|
| // Approximated completed portion of the transfer operation.
|
| - double? processed;
|
| + double processed;
|
|
|
| // Approximated total size of transfer operation.
|
| - double? total;
|
| + double total;
|
|
|
| // Total number of jobs.
|
| long num_total_jobs;
|
|
|