| Index: webkit/browser/fileapi/native_file_util.cc
|
| diff --git a/webkit/browser/fileapi/native_file_util.cc b/webkit/browser/fileapi/native_file_util.cc
|
| index e27cb4ae797f9b47ff00f6e37daedb5bcf727347..7b12a62131809df0701a6007ce047921035f61fe 100644
|
| --- a/webkit/browser/fileapi/native_file_util.cc
|
| +++ b/webkit/browser/fileapi/native_file_util.cc
|
| @@ -228,7 +228,7 @@ PlatformFileError NativeFileUtil::CopyOrMoveFile(
|
| }
|
|
|
| if (copy) {
|
| - if (file_util::CopyFile(src_path, dest_path))
|
| + if (base::CopyFile(src_path, dest_path))
|
| return base::PLATFORM_FILE_OK;
|
| } else {
|
| if (base::Move(src_path, dest_path))
|
|
|