| Index: services/files/files_impl.cc
|
| diff --git a/services/files/files_impl.cc b/services/files/files_impl.cc
|
| index 111eaac5fdb98037b1368bd944a0886a6c674149..bfe151b0cba791e315e3c92a4bc7271fe7d0da59 100644
|
| --- a/services/files/files_impl.cc
|
| +++ b/services/files/files_impl.cc
|
| @@ -79,17 +79,17 @@ void FilesImpl::OpenFileSystem(const mojo::String& file_system,
|
| #endif
|
| if (!dir_fd.is_valid()) {
|
| LOG(ERROR) << "~/MojoDebug unavailable";
|
| - callback.Run(ERROR_UNAVAILABLE);
|
| + callback.Run(Error::UNAVAILABLE);
|
| return;
|
| }
|
| } else {
|
| LOG(ERROR) << "Unknown file system: " << file_system.get();
|
| - callback.Run(ERROR_UNIMPLEMENTED);
|
| + callback.Run(Error::UNIMPLEMENTED);
|
| return;
|
| }
|
|
|
| new DirectoryImpl(directory.Pass(), dir_fd.Pass(), temp_dir.Pass());
|
| - callback.Run(ERROR_OK);
|
| + callback.Run(Error::OK);
|
| }
|
|
|
| } // namespace files
|
|
|