| Index: chrome/browser/extensions/api/file_system/file_system_api.cc
|
| 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 a44115786c68598dc064e3a41a658b71b044a143..0e6cd76ce6c147624beb30e6edc801fd3de8feea 100644
|
| --- a/chrome/browser/extensions/api/file_system/file_system_api.cc
|
| +++ b/chrome/browser/extensions/api/file_system/file_system_api.cc
|
| @@ -212,7 +212,7 @@ bool GetFilePathOfFileEntry(const std::string& filesystem_name,
|
| bool DoCheckWritableFile(const base::FilePath& path,
|
| const base::FilePath& extension_directory) {
|
| // Don't allow links.
|
| - if (file_util::PathExists(path) && file_util::IsLink(path))
|
| + if (base::PathExists(path) && file_util::IsLink(path))
|
| return false;
|
|
|
| if (extension_directory == path || extension_directory.IsParent(path))
|
|
|