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

Unified Diff: chrome/browser/chromeos/drive/file_system/copy_operation.cc

Issue 18332014: Move Copy* into the base namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: windows Created 7 years, 5 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/chromeos/drive/file_system/copy_operation.cc
diff --git a/chrome/browser/chromeos/drive/file_system/copy_operation.cc b/chrome/browser/chromeos/drive/file_system/copy_operation.cc
index bd0b86ba5ad729cd9cbba8b1497bf4c60abbb6da..3b10008c9d80e99e8a1a73d1a844d20c626abaf5 100644
--- a/chrome/browser/chromeos/drive/file_system/copy_operation.cc
+++ b/chrome/browser/chromeos/drive/file_system/copy_operation.cc
@@ -28,12 +28,12 @@ namespace file_system {
namespace {
// Copies a file from |src_file_path| to |dest_file_path| on the local
-// file system using file_util::CopyFile.
+// file system using base::CopyFile.
// Returns FILE_ERROR_OK on success or FILE_ERROR_FAILED otherwise.
FileError CopyLocalFileOnBlockingPool(
const base::FilePath& src_file_path,
const base::FilePath& dest_file_path) {
- return file_util::CopyFile(src_file_path, dest_file_path) ?
+ return base::CopyFile(src_file_path, dest_file_path) ?
FILE_ERROR_OK : FILE_ERROR_FAILED;
}

Powered by Google App Engine
This is Rietveld 408576698