summaryrefslogtreecommitdiffstats
path: root/ipc/ipc_channel_posix.h
diff options
context:
space:
mode:
authorpvalchev@google.com <pvalchev@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2010-05-19 18:17:53 +0000
committerpvalchev@google.com <pvalchev@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2010-05-19 18:17:53 +0000
commite39333ece7fa47290fec1a757af8fde5a6bb16ba (patch)
tree31e3eaa49235c4ec4173e51a1f8509ce90fc7da2 /ipc/ipc_channel_posix.h
parent7b8c01166d60c3d075953638c27a0f465e1d5de8 (diff)
downloadchromium_src-e39333ece7fa47290fec1a757af8fde5a6bb16ba.zip
chromium_src-e39333ece7fa47290fec1a757af8fde5a6bb16ba.tar.gz
chromium_src-e39333ece7fa47290fec1a757af8fde5a6bb16ba.tar.bz2
chunk of straightforward ifdef/include changes for BSD port
based on sprewell's patch Review URL: http://codereview.chromium.org/2069009 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@47687 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ipc/ipc_channel_posix.h')
-rw-r--r--ipc/ipc_channel_posix.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/ipc/ipc_channel_posix.h b/ipc/ipc_channel_posix.h
index dd45345..7cb8e1d 100644
--- a/ipc/ipc_channel_posix.h
+++ b/ipc/ipc_channel_posix.h
@@ -86,8 +86,8 @@ class Channel::ChannelImpl : public MessageLoopForIO::Watcher {
// 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