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

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

Issue 2655303004: Add id properties to PointerEvent (Closed)
Patch Set: pointer id Created 3 years, 10 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_unittest.cc
diff --git a/content/browser/renderer_host/input/input_router_impl_unittest.cc b/content/browser/renderer_host/input/input_router_impl_unittest.cc
index d7fc65b2a31a6b06f5894da02e35ebf1753e880d..1cf413fdb1838363d146da66ab4cb59366e76055 100644
--- a/content/browser/renderer_host/input/input_router_impl_unittest.cc
+++ b/content/browser/renderer_host/input/input_router_impl_unittest.cc
@@ -115,7 +115,7 @@ bool TouchEventsAreEquivalent(const ui::TouchEvent& first,
return false;
if (first.location() != second.location())
return false;
- if (first.touch_id() != second.touch_id())
+ if (first.pointer_details().id != second.pointer_details().id)
return false;
if (second.time_stamp() != first.time_stamp())
return false;

Powered by Google App Engine
This is Rietveld 408576698