| Index: ui/events/test/event_generator.h
|
| diff --git a/ui/events/test/event_generator.h b/ui/events/test/event_generator.h
|
| index afa2e50e771be98d29bee6e519df59f4fec9f481..d205fa186284478b19ef7018f70b8314eeb90943 100644
|
| --- a/ui/events/test/event_generator.h
|
| +++ b/ui/events/test/event_generator.h
|
| @@ -239,6 +239,17 @@ class EventGenerator {
|
| // Set radius of touch PointerDetails.
|
| void SetTouchRadius(float x, float y);
|
|
|
| + // Set tilt of touch PointerDetails.
|
| + void SetTouchTilt(float x, float y);
|
| +
|
| + // Set pointer type of touch PointerDetails.
|
| + void SetTouchPointerType(ui::EventPointerType type) {
|
| + touch_pointer_details_.pointer_type = type;
|
| + }
|
| +
|
| + // Set force of touch PointerDetails.
|
| + void SetTouchForce(float force) { touch_pointer_details_.force = force; }
|
| +
|
| // Generates a touch press event.
|
| void PressTouch();
|
|
|
|
|