summaryrefslogtreecommitdiffstats
path: root/ipc
diff options
context:
space:
mode:
authortfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-05-01 18:35:56 +0000
committertfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-05-01 18:35:56 +0000
commit1652dcc0c45f389c2881dcad3faafac2fcf0f9b8 (patch)
treecb22edc5eb779c1145ee606625a45ec12cbcc73e /ipc
parent6c828fb6bc1e82b2a1bbeebbccb1cce64a8d5009 (diff)
downloadchromium_src-1652dcc0c45f389c2881dcad3faafac2fcf0f9b8.zip
chromium_src-1652dcc0c45f389c2881dcad3faafac2fcf0f9b8.tar.gz
chromium_src-1652dcc0c45f389c2881dcad3faafac2fcf0f9b8.tar.bz2
base: Remove ALLOW_THIS_IN_INITIALIZER_LIST macro.
All the usages were fixed in past revisions and the remaining usages were fixed within this patch. BUG=234765 TBR=darin@chromium.org Review URL: https://codereview.chromium.org/14657004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@197671 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ipc')
-rw-r--r--ipc/ipc_channel_win.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/ipc/ipc_channel_win.cc b/ipc/ipc_channel_win.cc
index bde64124..8963707 100644
--- a/ipc/ipc_channel_win.cc
+++ b/ipc/ipc_channel_win.cc
@@ -42,7 +42,7 @@ Channel::ChannelImpl::ChannelImpl(const IPC::ChannelHandle &channel_handle,
peer_pid_(base::kNullProcessId),
waiting_connect_(mode & MODE_SERVER_FLAG),
processing_incoming_(false),
- ALLOW_THIS_IN_INITIALIZER_LIST(weak_factory_(this)),
+ weak_factory_(this),
client_secret_(0),
validate_client_(false) {
CreatePipe(channel_handle, mode);