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

Unified Diff: components/nacl/zygote/nacl_fork_delegate_linux.cc

Issue 1146813011: Move UnixDomainSocket to base namespace (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 7 months 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 | « components/nacl/loader/nacl_helper_linux.cc ('k') | content/browser/renderer_host/sandbox_ipc_linux.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/nacl/zygote/nacl_fork_delegate_linux.cc
diff --git a/components/nacl/zygote/nacl_fork_delegate_linux.cc b/components/nacl/zygote/nacl_fork_delegate_linux.cc
index 428dbbeae6e7a4e37398384a79b51b5d200b8a73..820ac09a23823b514d281a52796b4785dad498d8 100644
--- a/components/nacl/zygote/nacl_fork_delegate_linux.cc
+++ b/components/nacl/zygote/nacl_fork_delegate_linux.cc
@@ -106,8 +106,8 @@ bool SendIPCRequestAndReadReply(int ipc_channel,
reply_data_buffer_size);
DCHECK(reply_size);
- if (!UnixDomainSocket::SendMsg(ipc_channel, request_pickle.data(),
- request_pickle.size(), attached_fds)) {
+ if (!base::UnixDomainSocket::SendMsg(ipc_channel, request_pickle.data(),
+ request_pickle.size(), attached_fds)) {
LOG(ERROR) << "SendIPCRequestAndReadReply: SendMsg failed";
return false;
}
@@ -115,8 +115,8 @@ bool SendIPCRequestAndReadReply(int ipc_channel,
// Then read the remote reply.
ScopedVector<base::ScopedFD> received_fds;
const ssize_t msg_len =
- UnixDomainSocket::RecvMsg(ipc_channel, reply_data_buffer,
- reply_data_buffer_size, &received_fds);
+ base::UnixDomainSocket::RecvMsg(ipc_channel, reply_data_buffer,
+ reply_data_buffer_size, &received_fds);
if (msg_len <= 0) {
LOG(ERROR) << "SendIPCRequestAndReadReply: RecvMsg failed";
return false;
« no previous file with comments | « components/nacl/loader/nacl_helper_linux.cc ('k') | content/browser/renderer_host/sandbox_ipc_linux.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698