| 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);
|
| }
|
| }
|
| }
|
|
|