diff options
author | cbentzel@chromium.org <cbentzel@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-04-21 14:58:18 +0000 |
---|---|---|
committer | cbentzel@chromium.org <cbentzel@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-04-21 14:58:18 +0000 |
commit | aa88ae2e3f9ea618205fb52dbf892a1b0cb3e050 (patch) | |
tree | 39c09b86fa1b3af090584743d8b963a1bc7da3df /ipc/ipc_channel_posix.cc | |
parent | eed936e95093bd6daaf277b7ccbd1e1ffe3347ee (diff) | |
download | chromium_src-aa88ae2e3f9ea618205fb52dbf892a1b0cb3e050.zip chromium_src-aa88ae2e3f9ea618205fb52dbf892a1b0cb3e050.tar.gz chromium_src-aa88ae2e3f9ea618205fb52dbf892a1b0cb3e050.tar.bz2 |
Remove unused member from POSIX implementation of ChannelImpl.
BUG=None
TEST=Compiles
Review URL: http://codereview.chromium.org/6873119
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@82485 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ipc/ipc_channel_posix.cc')
-rw-r--r-- | ipc/ipc_channel_posix.cc | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/ipc/ipc_channel_posix.cc b/ipc/ipc_channel_posix.cc index 9d908b8..4ccf712 100644 --- a/ipc/ipc_channel_posix.cc +++ b/ipc/ipc_channel_posix.cc @@ -308,8 +308,7 @@ Channel::ChannelImpl::ChannelImpl(const IPC::ChannelHandle& channel_handle, #endif // IPC_USES_READWRITE pipe_name_(channel_handle.name), listener_(listener), - must_unlink_(false), - factory_(this) { + must_unlink_(false) { if (!CreatePipe(channel_handle)) { // The pipe may have been closed already. const char *modestr = (mode_ & MODE_SERVER_FLAG) ? "server" : "client"; |