Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(445)

Unified Diff: content/browser/renderer_host/input/input_router_impl_perftest.cc

Issue 2573073003: Collapse the API surface on WebInputEvent via accessor functions. (Closed)
Patch Set: Fix nits Created 3 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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 4249df274eb90fb53dd75a2d96b469e27c4662c1..add2bdb10bc9a04dda40d4e3405246fd7df1671e 100644
--- a/content/browser/renderer_host/input/input_router_impl_perftest.cc
+++ b/content/browser/renderer_host/input/input_router_impl_perftest.cc
@@ -249,7 +249,7 @@ class InputRouterImplPerfTest : public testing::Test {
InputEventAckState ack_result) {
if (!ui::WebInputEventTraits::ShouldBlockEventStream(event))
return;
- InputEventAck ack(InputEventAckSource::COMPOSITOR_THREAD, event.type,
+ InputEventAck ack(InputEventAckSource::COMPOSITOR_THREAD, event.type(),
ack_result);
InputHostMsg_HandleInputEvent_ACK response(0, ack);
input_router_->OnMessageReceived(response);

Powered by Google App Engine
This is Rietveld 408576698