Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(320)

Unified Diff: ipc/unix_domain_socket_util.cc

Issue 100573002: Move directory creation functions to base namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ipc/ipc_channel_posix_unittest.cc ('k') | mojo/shell/storage.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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;
}
« no previous file with comments | « ipc/ipc_channel_posix_unittest.cc ('k') | mojo/shell/storage.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698