| Index: base/files/file_util_proxy.cc
|
| diff --git a/base/files/file_util_proxy.cc b/base/files/file_util_proxy.cc
|
| index 9f65da8ec98d40b05631de605302334056a9163a..5eb9fe51b4382540021c9a8fd29d68b671224ab0 100644
|
| --- a/base/files/file_util_proxy.cc
|
| +++ b/base/files/file_util_proxy.cc
|
| @@ -107,7 +107,7 @@ class GetFileInfoHelper {
|
| : error_(PLATFORM_FILE_OK) {}
|
|
|
| void RunWorkForFilePath(const FilePath& file_path) {
|
| - if (!file_util::PathExists(file_path)) {
|
| + if (!PathExists(file_path)) {
|
| error_ = PLATFORM_FILE_ERROR_NOT_FOUND;
|
| return;
|
| }
|
| @@ -210,7 +210,7 @@ PlatformFileError CloseAdapter(PlatformFile file_handle) {
|
| }
|
|
|
| PlatformFileError DeleteAdapter(const FilePath& file_path, bool recursive) {
|
| - if (!file_util::PathExists(file_path)) {
|
| + if (!PathExists(file_path)) {
|
| return PLATFORM_FILE_ERROR_NOT_FOUND;
|
| }
|
| if (!base::Delete(file_path, recursive)) {
|
|
|