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

Unified Diff: content/common/child_process_sandbox_support_impl_shm_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 | « content/common/child_process_sandbox_support_impl_linux.cc ('k') | content/common/font_config_ipc_linux.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/common/child_process_sandbox_support_impl_shm_linux.cc
diff --git a/content/common/child_process_sandbox_support_impl_shm_linux.cc b/content/common/child_process_sandbox_support_impl_shm_linux.cc
index 0c634c109a9c66ed77ad865bf8e6fe8713c2f461..4c057426473b41e5e62ee60d2ca4522c1cb70c30 100644
--- a/content/common/child_process_sandbox_support_impl_shm_linux.cc
+++ b/content/common/child_process_sandbox_support_impl_shm_linux.cc
@@ -17,9 +17,8 @@ int MakeSharedMemorySegmentViaIPC(size_t length, bool executable) {
request.WriteBool(executable);
uint8_t reply_buf[10];
int result_fd;
- ssize_t result = UnixDomainSocket::SendRecvMsg(GetSandboxFD(),
- reply_buf, sizeof(reply_buf),
- &result_fd, request);
+ ssize_t result = base::UnixDomainSocket::SendRecvMsg(
+ GetSandboxFD(), reply_buf, sizeof(reply_buf), &result_fd, request);
if (result == -1)
return -1;
return result_fd;
« no previous file with comments | « content/common/child_process_sandbox_support_impl_linux.cc ('k') | content/common/font_config_ipc_linux.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698