summaryrefslogtreecommitdiffstats
path: root/ipc
diff options
context:
space:
mode:
authorcbentzel@chromium.org <cbentzel@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-04-21 14:58:18 +0000
committercbentzel@chromium.org <cbentzel@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-04-21 14:58:18 +0000
commitaa88ae2e3f9ea618205fb52dbf892a1b0cb3e050 (patch)
tree39c09b86fa1b3af090584743d8b963a1bc7da3df /ipc
parenteed936e95093bd6daaf277b7ccbd1e1ffe3347ee (diff)
downloadchromium_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')
-rw-r--r--ipc/ipc_channel_posix.cc3
-rw-r--r--ipc/ipc_channel_posix.h2
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);
};