summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authormbarbella <mbarbella@chromium.org>2015-06-19 10:09:39 -0700
committerCommit bot <commit-bot@chromium.org>2015-06-19 17:11:11 +0000
commitb2e181d5912bdf2bcb80887ff393f43f3b931e3f (patch)
tree8968881caf9e16ca7b8e7a78cb4df292f9ec9a79 /tools
parentb118b74e4ef77a1ef1e6a00ce6d0efb80d0f44e3 (diff)
downloadchromium_src-b2e181d5912bdf2bcb80887ff393f43f3b931e3f.zip
chromium_src-b2e181d5912bdf2bcb80887ff393f43f3b931e3f.tar.gz
chromium_src-b2e181d5912bdf2bcb80887ff393f43f3b931e3f.tar.bz2
Fix IPC fuzzer usage of IPC::ChannelMojo::CreateClientFactory.
In https://codereview.chromium.org/1129063005/, the first parameter was removed. This is causing compile failures on several of the LKGR builders. TBR=inferno@chromium.org NOTRY=true BUG= Review URL: https://codereview.chromium.org/1191313005 Cr-Commit-Position: refs/heads/master@{#335275}
Diffstat (limited to 'tools')
-rw-r--r--tools/ipc_fuzzer/message_replay/replay_process.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/ipc_fuzzer/message_replay/replay_process.cc b/tools/ipc_fuzzer/message_replay/replay_process.cc
index 993594c..319a4d6 100644
--- a/tools/ipc_fuzzer/message_replay/replay_process.cc
+++ b/tools/ipc_fuzzer/message_replay/replay_process.cc
@@ -94,7 +94,7 @@ void ReplayProcess::OpenChannel() {
if (should_use_mojo) {
channel_ = IPC::ChannelProxy::Create(
IPC::ChannelMojo::CreateClientFactory(
- nullptr, io_thread_.task_runner(), channel_name), this,
+ io_thread_.task_runner(), channel_name), this,
io_thread_.task_runner());
} else {
channel_ =