| Index: ui/events/gesture_detection/motion_event_generic_unittest.cc
|
| diff --git a/ui/events/gesture_detection/motion_event_generic_unittest.cc b/ui/events/gesture_detection/motion_event_generic_unittest.cc
|
| index 182eb1e48333c6a7ae1369fc00d4dcac656dad3d..393f74c5b60584bfa0e60b915d77d4c789edf03b 100644
|
| --- a/ui/events/gesture_detection/motion_event_generic_unittest.cc
|
| +++ b/ui/events/gesture_detection/motion_event_generic_unittest.cc
|
| @@ -189,14 +189,14 @@ TEST(MotionEventGenericTest, ToString) {
|
| pointer0.pressure = 10;
|
| pointer0.touch_minor = 15;
|
| pointer0.touch_major = 20;
|
| - pointer0.orientation = 1;
|
| + pointer0.touch_orientation = 1;
|
|
|
| PointerProperties pointer1(4, 5, 6);
|
| pointer1.id = 3;
|
| pointer0.pressure = 25;
|
| pointer0.touch_minor = 30;
|
| pointer0.touch_major = 35;
|
| - pointer0.orientation = -1;
|
| + pointer0.touch_orientation = -1;
|
|
|
| MotionEventGeneric event(MotionEvent::ACTION_MOVE, event_time, pointer0);
|
| event.PushPointer(pointer1);
|
|
|