diff options
author | dmaclach@chromium.org <dmaclach@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-02-03 20:35:09 +0000 |
---|---|---|
committer | dmaclach@chromium.org <dmaclach@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-02-03 20:35:09 +0000 |
commit | 1707726c90f2e3eca0c91e08586130988bd6edfd (patch) | |
tree | 8e36a6b66a3004386274f8b9b9d91d9207572588 /ipc/ipc_channel_posix.h | |
parent | c4ca989fc5da9169319c96ecf8549a3bc082981b (diff) | |
download | chromium_src-1707726c90f2e3eca0c91e08586130988bd6edfd.zip chromium_src-1707726c90f2e3eca0c91e08586130988bd6edfd.tar.gz chromium_src-1707726c90f2e3eca0c91e08586130988bd6edfd.tar.bz2 |
Clean up channel modes
Makes channel modes flags instead of a straight enum allowing us to check
properties directly.
BUG=none
TEST=BUILD
Review URL: http://codereview.chromium.org/6334061
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@73658 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ipc/ipc_channel_posix.h')
-rw-r--r-- | ipc/ipc_channel_posix.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/ipc/ipc_channel_posix.h b/ipc/ipc_channel_posix.h index ecfd41a..cee613a 100644 --- a/ipc/ipc_channel_posix.h +++ b/ipc/ipc_channel_posix.h @@ -56,9 +56,7 @@ class Channel::ChannelImpl : public MessageLoopForIO::Watcher { void ResetToAcceptingConnectionState(); private: - bool CreatePipe(const IPC::ChannelHandle& channel_handle, - bool uses_domain_sockets, - bool listening_socket); + bool CreatePipe(const IPC::ChannelHandle& channel_handle); bool ProcessIncomingMessages(); bool ProcessOutgoingMessages(); |