| 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 d66afb63ad996ca4e9d62ca713a9f5302cddddb3..ea2a23f57f749f6ce9863be06a2ad832d6e92574 100644
|
| --- a/chrome/browser/extensions/api/file_system/file_system_api.cc
|
| +++ b/chrome/browser/extensions/api/file_system/file_system_api.cc
|
| @@ -974,9 +974,7 @@ void FileSystemRetainEntryFunction::RetainFileEntry(
|
| }
|
|
|
| void FileSystemRetainEntryFunction::SetIsDirectoryOnFileThread() {
|
| - if (base::DirectoryExists(path_)) {
|
| - is_directory_ = true;
|
| - }
|
| + is_directory_ = base::DirectoryExists(path_);
|
| }
|
|
|
| bool FileSystemIsRestorableFunction::RunImpl() {
|
|
|