From ae9ad39659882add8652e508ef7903a3e6600a6d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=AAr=C3=B4me=20Poichet?= Date: Thu, 23 Mar 2017 10:51:08 -0700 Subject: [PATCH] [flutter] Mozart API changed (#3504) Updating SetListener to SetEventListener which comes with a new SetHitViewTester --- content_handler/runtime_holder.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content_handler/runtime_holder.cc b/content_handler/runtime_holder.cc index ae8987595..d6a53c92a 100644 --- a/content_handler/runtime_holder.cc +++ b/content_handler/runtime_holder.cc @@ -138,7 +138,7 @@ void RuntimeHolder::CreateView( ConnectToService(view_services.get(), GetProxy(&input_connection_)); mozart::InputListenerPtr input_listener; input_listener_binding_.Bind(GetProxy(&input_listener)); - input_connection_->SetListener(std::move(input_listener)); + input_connection_->SetEventListener(std::move(input_listener)); #if FLUTTER_ENABLE_VULKAN direct_input_ = std::make_unique( -- GitLab