| Index: components/profile_service/profile_service_impl.cc
|
| diff --git a/components/profile_service/profile_service_impl.cc b/components/profile_service/profile_service_impl.cc
|
| index b6239dd706459860cd7bc7d52bf90d00d965cbfe..948795ea5a7b483580e346b43ab1d37e7919d6cd 100644
|
| --- a/components/profile_service/profile_service_impl.cc
|
| +++ b/components/profile_service/profile_service_impl.cc
|
| @@ -29,11 +29,14 @@ ProfileServiceImpl::~ProfileServiceImpl() {
|
| }
|
|
|
| void ProfileServiceImpl::GetDirectory(
|
| - mojo::InterfaceRequest<filesystem::Directory> request) {
|
| + mojo::InterfaceRequest<filesystem::Directory> request,
|
| + const GetDirectoryCallback& callback) {
|
| + LOG(ERROR) << "Getting directory...";
|
| new filesystem::DirectoryImpl(std::move(request),
|
| path_,
|
| scoped_ptr<base::ScopedTempDir>(),
|
| lock_table_);
|
| + callback.Run(filesystem::FileError::OK);
|
| }
|
|
|
| } // namespace profile
|
|
|