Index: chrome/browser/resources/file_manager/js/file_transfer_controller.js |
diff --git a/chrome/browser/resources/file_manager/js/file_transfer_controller.js b/chrome/browser/resources/file_manager/js/file_transfer_controller.js |
index 0848fee7d019ca2384dac15df80bdc22660ae2c6..b48e7dff58cde066b49859b1831b79fcb4ad464a 100644 |
--- a/chrome/browser/resources/file_manager/js/file_transfer_controller.js |
+++ b/chrome/browser/resources/file_manager/js/file_transfer_controller.js |
@@ -400,6 +400,8 @@ FileTransferController.prototype = { |
if (this.directoryModel_.isPathReadOnly(destinationPath)) { |
return false; |
} |
+ if (util.isSpecialReadonlyDirectory(destinationPath)) |
+ return false; |
if (!dataTransfer.types || dataTransfer.types.indexOf('fs/tag') == -1) |
return false; // Unsupported type of content. |