summaryrefslogtreecommitdiffstats
path: root/ipc/ipc_channel_proxy.cc
diff options
context:
space:
mode:
authorthestig@chromium.org <thestig@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-10-19 16:01:26 +0000
committerthestig@chromium.org <thestig@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-10-19 16:01:26 +0000
commit56cd2343fceaaa20540db96619ae15424f8d2814 (patch)
tree7e4c7181602409d980d29c60a0042ff29cffc2c8 /ipc/ipc_channel_proxy.cc
parentbd6304d77174538115c626e68d53ed4e79d1928c (diff)
downloadchromium_src-56cd2343fceaaa20540db96619ae15424f8d2814.zip
chromium_src-56cd2343fceaaa20540db96619ae15424f8d2814.tar.gz
chromium_src-56cd2343fceaaa20540db96619ae15424f8d2814.tar.bz2
Remove ipc fuzzing code.
BUG=298372 Review URL: https://codereview.chromium.org/27031007 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@229577 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ipc/ipc_channel_proxy.cc')
-rw-r--r--ipc/ipc_channel_proxy.cc4
1 files changed, 0 insertions, 4 deletions
diff --git a/ipc/ipc_channel_proxy.cc b/ipc/ipc_channel_proxy.cc
index acc068d..18ed304 100644
--- a/ipc/ipc_channel_proxy.cc
+++ b/ipc/ipc_channel_proxy.cc
@@ -288,14 +288,12 @@ ChannelProxy::ChannelProxy(const IPC::ChannelHandle& channel_handle,
Listener* listener,
base::SingleThreadTaskRunner* ipc_task_runner)
: context_(new Context(listener, ipc_task_runner)),
- outgoing_message_filter_(NULL),
did_init_(false) {
Init(channel_handle, mode, true);
}
ChannelProxy::ChannelProxy(Context* context)
: context_(context),
- outgoing_message_filter_(NULL),
did_init_(false) {
}
@@ -358,8 +356,6 @@ bool ChannelProxy::Send(Message* message) {
// TODO(alexeypa): add DCHECK(CalledOnValidThread()) here. Currently there are
// tests that call Send() from a wrong thread. See http://crbug.com/163523.
- if (outgoing_message_filter())
- message = outgoing_message_filter()->Rewrite(message);
#ifdef IPC_MESSAGE_LOG_ENABLED
Logging::GetInstance()->OnSendMessage(message, context_->channel_id());