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

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

Issue 1218663006: Use new WebTouchPoint field names. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 5 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
« no previous file with comments | « components/test_runner/event_sender.cc ('k') | content/browser/renderer_host/input/motion_event_web.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 9d0924f2efa6f4e203a32cd733220cae20b551bb..c760aaba75f7cda29d9078313e1be62a8b885e64 100644
--- a/content/browser/renderer_host/input/input_router_impl_perftest.cc
+++ b/content/browser/renderer_host/input/input_router_impl_perftest.cc
@@ -143,7 +143,7 @@ Touches BuildTouchSequence(size_t steps,
WebTouchEvent touch;
touch.touchesLength = 1;
touch.type = WebInputEvent::TouchStart;
- touch.touches[0].id = 0;
+ touch.touches[0].pointerId = 0;
touch.touches[0].state = WebTouchPoint::StatePressed;
touch.touches[0].position.x = origin.x();
touch.touches[0].position.y = origin.y();
« no previous file with comments | « components/test_runner/event_sender.cc ('k') | content/browser/renderer_host/input/motion_event_web.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698