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

Unified Diff: ui/file_manager/file_manager/foreground/js/file_transfer_controller.js

Issue 546413002: Remove the warning for converting entries to URLs. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 3 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: ui/file_manager/file_manager/foreground/js/file_transfer_controller.js
diff --git a/ui/file_manager/file_manager/foreground/js/file_transfer_controller.js b/ui/file_manager/file_manager/foreground/js/file_transfer_controller.js
index 650ef7f366a86dde1365c470e543b44f42cb16de..46e83898c0827e2f17aec6142dc9400741a6efee 100644
--- a/ui/file_manager/file_manager/foreground/js/file_transfer_controller.js
+++ b/ui/file_manager/file_manager/foreground/js/file_transfer_controller.js
@@ -262,6 +262,8 @@ FileTransferController.prototype = {
// Check all file entries and keeps only those need sharing operation.
var processFileEntries = function(entries) {
return new Promise(function(callback) {
+ // TODO(mtomasz): Move conversion from entry to url to custom bindings.
+ // crbug.com/345527.
var urls = util.entriesToURLs(entries);
chrome.fileBrowserPrivate.getEntryProperties(urls, callback);
}).

Powered by Google App Engine
This is Rietveld 408576698