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

Unified Diff: chrome/browser/resources/file_manager/background/js/file_operation_handler.js

Issue 152513002: Files.app: Fix the number of remaining files and processed bytes. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fixed a test. Created 6 years, 10 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
« no previous file with comments | « no previous file | chrome/browser/resources/file_manager/background/js/file_operation_manager.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/resources/file_manager/background/js/file_operation_handler.js
diff --git a/chrome/browser/resources/file_manager/background/js/file_operation_handler.js b/chrome/browser/resources/file_manager/background/js/file_operation_handler.js
index 80cfdf1f147343d45c21bc37acf6d7321329e13d..38da2425c873f663d3b9b3f5f9a1ff15ccbccc9e 100644
--- a/chrome/browser/resources/file_manager/background/js/file_operation_handler.js
+++ b/chrome/browser/resources/file_manager/background/js/file_operation_handler.js
@@ -103,7 +103,7 @@ FileOperationHandler.getMessage_ = function(event) {
}
}
} else if (event.status.numRemainingItems === 1) {
- var name = event.status.processingEntry.name;
+ var name = event.status.processingEntryName;
switch (event.status.operationType) {
case 'COPY': return strf('COPY_FILE_NAME', name);
case 'MOVE': return strf('MOVE_FILE_NAME', name);
« no previous file with comments | « no previous file | chrome/browser/resources/file_manager/background/js/file_operation_manager.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698