Index: content/browser/renderer_host/input/web_input_event_util_unittest.cc |
diff --git a/content/browser/renderer_host/input/web_input_event_util_unittest.cc b/content/browser/renderer_host/input/web_input_event_util_unittest.cc |
index 1c1c7be04369702ebec13c1069019b1aa65b8676..1d29a070c17e2dacc3e37f9bfb734554972466ff 100644 |
--- a/content/browser/renderer_host/input/web_input_event_util_unittest.cc |
+++ b/content/browser/renderer_host/input/web_input_event_util_unittest.cc |
@@ -24,13 +24,12 @@ using ui::MotionEventGeneric; |
namespace content { |
TEST(WebInputEventUtilTest, MotionEventConversion) { |
- ui::PointerProperties pointer(5, 10); |
+ ui::PointerProperties pointer(5, 10, 40); |
pointer.id = 15; |
pointer.raw_x = 20; |
pointer.raw_y = 25; |
pointer.pressure = 30; |
pointer.touch_minor = 35; |
- pointer.touch_major = 40; |
pointer.orientation = static_cast<float>(-M_PI / 2); |
MotionEventGeneric event( |
MotionEvent::ACTION_DOWN, base::TimeTicks::Now(), pointer); |