diff options
-rw-r--r-- | ipc/ipc_channel_posix.cc | 3 | ||||
-rw-r--r-- | ipc/ipc_channel_posix.h | 2 |
2 files changed, 1 insertions, 4 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"; diff --git a/ipc/ipc_channel_posix.h b/ipc/ipc_channel_posix.h index f1cbd63..5e660bb 100644 --- a/ipc/ipc_channel_posix.h +++ b/ipc/ipc_channel_posix.h @@ -139,8 +139,6 @@ class Channel::ChannelImpl : public MessageLoopForIO::Watcher { // True if we are responsible for unlinking the unix domain socket file. bool must_unlink_; - ScopedRunnableMethodFactory<ChannelImpl> factory_; - DISALLOW_IMPLICIT_CONSTRUCTORS(ChannelImpl); }; |