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

Unified Diff: cloud_print/virtual_driver/win/install/setup.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
« no previous file with comments | « cloud_print/common/win/install_utils.cc ('k') | content/browser/download/base_file_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cloud_print/virtual_driver/win/install/setup.cc
diff --git a/cloud_print/virtual_driver/win/install/setup.cc b/cloud_print/virtual_driver/win/install/setup.cc
index f1b870a57efa996e7460ee8cdddc0b076845bfc1..85591ee5d1f5e4ffa37178920776af3dffcf5657 100644
--- a/cloud_print/virtual_driver/win/install/setup.cc
+++ b/cloud_print/virtual_driver/win/install/setup.cc
@@ -111,7 +111,7 @@ HRESULT RegisterPortMonitor(bool install, const base::FilePath& install_path) {
if (install) {
base::FilePath source_path =
install_path.Append(GetPortMonitorDllName());
- if (!file_util::CopyFile(source_path, target_path)) {
+ if (!base::CopyFile(source_path, target_path)) {
LOG(ERROR) << "Unable copy port monitor dll from " <<
source_path.value() << " to " << target_path.value();
return GetLastHResult();
@@ -241,7 +241,7 @@ void ReadyDriverDependencies(const base::FilePath& destination) {
base::FilePath src_path = driver_cache_path.Append(kDependencyList[i]);
if (!file_util::PathExists(src_path))
src_path = GetSystemPath(kDependencyList[i]);
- file_util::CopyFile(src_path, dst_path);
+ base::CopyFile(src_path, dst_path);
}
}
}
« no previous file with comments | « cloud_print/common/win/install_utils.cc ('k') | content/browser/download/base_file_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698