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

Unified Diff: chrome/browser/resources/file_manager/js/file_transfer_controller.js

Issue 22382002: Rename VolumeList -> NavigationList in Files.app (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: addressed comment Created 7 years, 4 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/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 510f30254f472214ad9e886a694c959b836be5e9..95f0d6fba75bc2d6936636c13b76ffaa8a9d5420 100644
--- a/chrome/browser/resources/file_manager/js/file_transfer_controller.js
+++ b/chrome/browser/resources/file_manager/js/file_transfer_controller.js
@@ -99,9 +99,9 @@ FileTransferController.prototype = {
/**
* @this {FileTransferController}
- * @param {VolumeList} tree Its sub items will could be drop target.
+ * @param {NavigationList} tree Its sub items will could be drop target.
*/
- attachVolumesDropTarget: function(list) {
+ attachNavigationListDropTarget: function(list) {
list.addEventListener('dragover',
this.onDragOver_.bind(this, true /* onlyIntoDirectories */, list));
list.addEventListener('dragenter',
@@ -409,7 +409,7 @@ FileTransferController.prototype = {
/**
* @this {FileTransferController}
- * @param {VolumeList} list Drop target list.
+ * @param {NavigationList} list Drop target list.
* @param {Event} event A dragenter event of DOM.
*/
onDragEnterVolumesList_: function(list, event) {

Powered by Google App Engine
This is Rietveld 408576698