| Index: ipc/unix_domain_socket_util.cc
|
| diff --git a/ipc/unix_domain_socket_util.cc b/ipc/unix_domain_socket_util.cc
|
| index 7f513a3ab4806f781ec3046d28d62917f283bcdf..10df9b214417dcece7e75b2b2a755fab4be22ffe 100644
|
| --- a/ipc/unix_domain_socket_util.cc
|
| +++ b/ipc/unix_domain_socket_util.cc
|
| @@ -84,7 +84,7 @@ bool CreateServerUnixDomainSocket(const base::FilePath& socket_path,
|
| file_util::ScopedFD scoped_fd(&fd);
|
|
|
| // Make sure the path we need exists.
|
| - if (!file_util::CreateDirectory(socket_dir)) {
|
| + if (!base::CreateDirectory(socket_dir)) {
|
| LOG(ERROR) << "Couldn't create directory: " << socket_dir.value();
|
| return false;
|
| }
|
|
|