Index: base/files/file_util_proxy.cc |
diff --git a/base/files/file_util_proxy.cc b/base/files/file_util_proxy.cc |
index 721f67139573b48aed001c5382a0055bb3b4e2cd..fee97fb1c1a87ebd252d99e0ef02f3e301eb408a 100644 |
--- a/base/files/file_util_proxy.cc |
+++ b/base/files/file_util_proxy.cc |
@@ -197,7 +197,7 @@ PlatformFileError CreateOrOpenAdapter( |
PlatformFile* file_handle, bool* created) { |
DCHECK(file_handle); |
DCHECK(created); |
- if (!file_util::DirectoryExists(file_path.DirName())) { |
+ if (!DirectoryExists(file_path.DirName())) { |
// If its parent does not exist, should return NOT_FOUND error. |
return PLATFORM_FILE_ERROR_NOT_FOUND; |
} |