| Index: components/filesystem/file_system_impl.cc
|
| diff --git a/components/filesystem/file_system_impl.cc b/components/filesystem/file_system_impl.cc
|
| index 6ccf5cb2cfd7db04e173fc574530696d2f179a73..09ede9c82041bbac79ac0680ab29b0757548c003 100644
|
| --- a/components/filesystem/file_system_impl.cc
|
| +++ b/components/filesystem/file_system_impl.cc
|
| @@ -90,9 +90,9 @@ void FileSystemImpl::OpenFileSystem(const mojo::String& file_system,
|
| DirectoryImpl* dir_impl =
|
| new DirectoryImpl(std::move(directory), path, std::move(temp_dir));
|
| app_->RegisterDirectoryToClient(dir_impl, std::move(client));
|
| - callback.Run(FILE_ERROR_OK);
|
| + callback.Run(FileError::OK);
|
| } else {
|
| - callback.Run(FILE_ERROR_FAILED);
|
| + callback.Run(FileError::FAILED);
|
| }
|
| }
|
|
|
|
|