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

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

Issue 1023093002: Files.app: Replace job related code in EventRouter with new JobEventRoter class. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Update file_manager_private.js. Created 5 years, 9 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
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;

Powered by Google App Engine
This is Rietveld 408576698