| Index: content/renderer/mus/compositor_mus_connection.cc
|
| diff --git a/content/renderer/mus/compositor_mus_connection.cc b/content/renderer/mus/compositor_mus_connection.cc
|
| index 101c3a3a279dd754510ce58b0c3e0afd8ae81731..901465a0406842af000d84319562416698685c17 100644
|
| --- a/content/renderer/mus/compositor_mus_connection.cc
|
| +++ b/content/renderer/mus/compositor_mus_connection.cc
|
| @@ -5,10 +5,10 @@
|
| #include "content/renderer/mus/compositor_mus_connection.h"
|
|
|
| #include "base/single_thread_task_runner.h"
|
| -#include "content/common/input/web_input_event_traits.h"
|
| #include "content/renderer/input/input_handler_manager.h"
|
| #include "content/renderer/mus/render_widget_mus_connection.h"
|
| #include "mojo/converters/blink/blink_input_events_type_converters.h"
|
| +#include "ui/events/blink/web_input_event_traits.h"
|
| #include "ui/events/latency_info.h"
|
| #include "ui/events/mojo/event.mojom.h"
|
|
|
| @@ -137,7 +137,8 @@ void CompositorMusConnection::OnWindowInputEvent(
|
| return;
|
| base::Callback<void(EventResult)> ack =
|
| base::Bind(&::DoNothingWithEventResult);
|
| - const bool send_ack = WebInputEventTraits::ShouldBlockEventStream(*web_event);
|
| + const bool send_ack =
|
| + ui::WebInputEventTraits::ShouldBlockEventStream(*web_event);
|
| if (send_ack) {
|
| // Ultimately, this ACK needs to go back to the Mus client lib which is not
|
| // thread-safe and lives on the compositor thread. For ACKs that are passed
|
|
|