| Index: base/file_util.h
|
| diff --git a/base/file_util.h b/base/file_util.h
|
| index e6d7ac8fc40a593abfa55618bd02c6c68907b23c..ed2f3ca737949d166929c27e690d822eb06763f5 100644
|
| --- a/base/file_util.h
|
| +++ b/base/file_util.h
|
| @@ -69,7 +69,7 @@ BASE_EXPORT int64 ComputeDirectorySize(const FilePath& root_path);
|
| //
|
| // WARNING: USING THIS WITH recursive==true IS EQUIVALENT
|
| // TO "rm -rf", SO USE WITH CAUTION.
|
| -BASE_EXPORT bool Delete(const FilePath& path, bool recursive);
|
| +BASE_EXPORT bool DeleteFile(const FilePath& path, bool recursive);
|
|
|
| #if defined(OS_WIN)
|
| // Schedules to delete the given path, whether it's a file or a directory, until
|
| @@ -77,7 +77,7 @@ BASE_EXPORT bool Delete(const FilePath& path, bool recursive);
|
| // Note:
|
| // 1) The file/directory to be deleted should exist in a temp folder.
|
| // 2) The directory to be deleted must be empty.
|
| -BASE_EXPORT bool DeleteAfterReboot(const FilePath& path);
|
| +BASE_EXPORT bool DeleteFileAfterReboot(const FilePath& path);
|
| #endif
|
|
|
| // Moves the given path, whether it's a file or a directory.
|
|
|