summaryrefslogtreecommitdiffstats
path: root/chrome/browser/extensions/api/file_system/file_system_api.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/browser/extensions/api/file_system/file_system_api.cc')
-rw-r--r--chrome/browser/extensions/api/file_system/file_system_api.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/browser/extensions/api/file_system/file_system_api.cc b/chrome/browser/extensions/api/file_system/file_system_api.cc
index 0e6cd76..c02d5e01 100644
--- a/chrome/browser/extensions/api/file_system/file_system_api.cc
+++ b/chrome/browser/extensions/api/file_system/file_system_api.cc
@@ -658,7 +658,7 @@ void FileSystemChooseEntryFunction::SetInitialPathOnFileThread(
const base::FilePath& suggested_name,
const base::FilePath& previous_path) {
DCHECK(content::BrowserThread::CurrentlyOn(content::BrowserThread::FILE));
- if (!previous_path.empty() && file_util::DirectoryExists(previous_path)) {
+ if (!previous_path.empty() && base::DirectoryExists(previous_path)) {
initial_path_ = previous_path.Append(suggested_name);
} else {
base::FilePath documents_dir;