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

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

Issue 10874028: Rename GDataFileSystem* to DriveFileSystem* (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase. Created 8 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_copy_manager.js
diff --git a/chrome/browser/resources/file_manager/js/file_copy_manager.js b/chrome/browser/resources/file_manager/js/file_copy_manager.js
index 4f52834febbde1aa15ffda15bda19c6b27861a4e..5cf617d6e4f84ae3d321e4a560031831fc0cf01a 100644
--- a/chrome/browser/resources/file_manager/js/file_copy_manager.js
+++ b/chrome/browser/resources/file_manager/js/file_copy_manager.js
@@ -780,9 +780,9 @@ FileCopyManager.prototype.serviceNextTaskEntry_ = function(
}
if (task.sourceOnGData && task.targetOnGData) {
- // TODO(benchan): GDataFileSystem has not implemented directory copy,
+ // TODO(benchan): DriveFileSystem has not implemented directory copy,
// and thus we only call FileEntry.copyTo() for files. Revisit this
- // code when GDataFileSystem supports directory copy.
+ // code when DriveFileSystem supports directory copy.
if (!sourceEntry.isDirectory) {
resolveDirAndBaseName(
targetDirEntry, targetRelativePath,
@@ -796,7 +796,7 @@ FileCopyManager.prototype.serviceNextTaskEntry_ = function(
}
}
- // TODO(benchan): Until GDataFileSystem supports FileWriter, we use the
+ // TODO(benchan): Until DriveFileSystem supports FileWriter, we use the
// transferFile API to copy files into or out from a gdata file system.
if (sourceEntry.isFile && (task.sourceOnGData || task.targetOnGData)) {
var sourceFileUrl = sourceEntry.toURL();
@@ -942,4 +942,3 @@ FileCopyManager.prototype.copyEntry_ = function(sourceEntry,
sourceEntry.file(onSourceFileFound, errorCallback);
};
-
« no previous file with comments | « chrome/browser/download/save_package_file_picker_chromeos.h ('k') | chrome/browser/resources/file_manager/js/file_manager.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698