Index: tools/ipc_fuzzer/message_replay/replay_process.cc |
diff --git a/tools/ipc_fuzzer/message_replay/replay_process.cc b/tools/ipc_fuzzer/message_replay/replay_process.cc |
index 8e30b9004fbf420674826f6683173cabd65c6d1b..993594c2d9222cf0612d1c0e1191c49b372bc339 100644 |
--- a/tools/ipc_fuzzer/message_replay/replay_process.cc |
+++ b/tools/ipc_fuzzer/message_replay/replay_process.cc |
@@ -94,12 +94,12 @@ void ReplayProcess::OpenChannel() { |
if (should_use_mojo) { |
channel_ = IPC::ChannelProxy::Create( |
IPC::ChannelMojo::CreateClientFactory( |
- nullptr, io_thread_.message_loop_proxy(), channel_name), this, |
- io_thread_.message_loop_proxy()); |
+ nullptr, io_thread_.task_runner(), channel_name), this, |
+ io_thread_.task_runner()); |
} else { |
channel_ = |
IPC::ChannelProxy::Create(channel_name, IPC::Channel::MODE_CLIENT, this, |
- io_thread_.message_loop_proxy()); |
+ io_thread_.task_runner()); |
} |
} |