Chromium Code Reviews

Unified Diff: ipc/ipc_channel_posix.h

Issue 2069009: chunk of straightforward ifdef/include changes for BSD port... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 10 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
« no previous file with comments | « no previous file | ipc/ipc_channel_posix.cc » ('j') | ipc/ipc_channel_posix.cc » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ipc/ipc_channel_posix.h
===================================================================
--- ipc/ipc_channel_posix.h (revision 47443)
+++ ipc/ipc_channel_posix.h (working copy)
@@ -86,8 +86,8 @@
// pipe_ that is passed to the client.
int client_pipe_;
-#if defined(OS_LINUX)
- // Linux uses a dedicated socketpair() for passing file descriptors.
+#if !defined(OS_MACOSX)
+ // Linux/BSD use a dedicated socketpair() for passing file descriptors.
int fd_pipe_;
int remote_fd_pipe_;
#endif
« no previous file with comments | « no previous file | ipc/ipc_channel_posix.cc » ('j') | ipc/ipc_channel_posix.cc » ('J')

Powered by Google App Engine