diff options
Diffstat (limited to 'base/files/file_util_proxy.cc')
-rw-r--r-- | base/files/file_util_proxy.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/base/files/file_util_proxy.cc b/base/files/file_util_proxy.cc index 9f65da8e..5eb9fe5 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)) { |