Index: content/browser/renderer_host/input/input_router_impl_perftest.cc |
diff --git a/content/browser/renderer_host/input/input_router_impl_perftest.cc b/content/browser/renderer_host/input/input_router_impl_perftest.cc |
index ca830f008363727901c73b267a43d79b74c0af79..01f1b4e795a9b82752cd1e5594cc87bf89004c72 100644 |
--- a/content/browser/renderer_host/input/input_router_impl_perftest.cc |
+++ b/content/browser/renderer_host/input/input_router_impl_perftest.cc |
@@ -12,12 +12,12 @@ |
#include "content/browser/renderer_host/input/input_ack_handler.h" |
#include "content/browser/renderer_host/input/input_router_client.h" |
#include "content/browser/renderer_host/input/input_router_impl.h" |
-#include "content/common/input/web_input_event_traits.h" |
#include "content/common/input_messages.h" |
#include "content/common/view_messages.h" |
#include "ipc/ipc_sender.h" |
#include "testing/gtest/include/gtest/gtest.h" |
#include "testing/perf/perf_test.h" |
+#include "ui/events/blink/web_input_event_traits.h" |
#include "ui/gfx/geometry/vector2d_f.h" |
using base::TimeDelta; |
@@ -244,7 +244,7 @@ class InputRouterImplPerfTest : public testing::Test { |
void SendEventAckIfNecessary(const blink::WebInputEvent& event, |
InputEventAckState ack_result) { |
- if (!WebInputEventTraits::ShouldBlockEventStream(event)) |
+ if (!ui::WebInputEventTraits::ShouldBlockEventStream(event)) |
return; |
InputEventAck ack(event.type, ack_result); |
InputHostMsg_HandleInputEvent_ACK response(0, ack); |