summaryrefslogtreecommitdiffstats
path: root/remoting/host/simple_host_process.cc
diff options
context:
space:
mode:
Diffstat (limited to 'remoting/host/simple_host_process.cc')
-rw-r--r--remoting/host/simple_host_process.cc7
1 files changed, 3 insertions, 4 deletions
diff --git a/remoting/host/simple_host_process.cc b/remoting/host/simple_host_process.cc
index 58e3c5d..53cd897 100644
--- a/remoting/host/simple_host_process.cc
+++ b/remoting/host/simple_host_process.cc
@@ -222,10 +222,9 @@ class SimpleHost : public HeartbeatSender::Listener {
if (fake_) {
scoped_ptr<Capturer> capturer(new CapturerFake());
- scoped_ptr<EventExecutor> event_executor =
- EventExecutor::Create(context_.desktop_message_loop(),
- context_.ui_message_loop(),
- capturer.get());
+ scoped_ptr<EventExecutor> event_executor = EventExecutor::Create(
+ context_.desktop_message_loop()->message_loop_proxy(),
+ context_.ui_message_loop(), capturer.get());
desktop_environment_ = DesktopEnvironment::CreateFake(
&context_, capturer.Pass(), event_executor.Pass());
} else {