| 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 1bf4f57c500ef820eb3f6f9f776cef80562b6eb6..1f6a2e80d104c1bfc5c7841cdccfd61fe7761f19 100644
|
| --- a/webkit/browser/fileapi/native_file_util.cc
|
| +++ b/webkit/browser/fileapi/native_file_util.cc
|
| @@ -242,7 +242,7 @@ PlatformFileError NativeFileUtil::DeleteFile(const base::FilePath& path) {
|
| return base::PLATFORM_FILE_ERROR_NOT_FOUND;
|
| if (file_util::DirectoryExists(path))
|
| return base::PLATFORM_FILE_ERROR_NOT_A_FILE;
|
| - if (!file_util::Delete(path, false))
|
| + if (!base::Delete(path, false))
|
| return base::PLATFORM_FILE_ERROR_FAILED;
|
| return base::PLATFORM_FILE_OK;
|
| }
|
| @@ -254,7 +254,7 @@ PlatformFileError NativeFileUtil::DeleteDirectory(const base::FilePath& path) {
|
| return base::PLATFORM_FILE_ERROR_NOT_A_DIRECTORY;
|
| if (!file_util::IsDirectoryEmpty(path))
|
| return base::PLATFORM_FILE_ERROR_NOT_EMPTY;
|
| - if (!file_util::Delete(path, false))
|
| + if (!base::Delete(path, false))
|
| return base::PLATFORM_FILE_ERROR_FAILED;
|
| return base::PLATFORM_FILE_OK;
|
| }
|
|
|