| Index: content/browser/renderer_host/input/synthetic_pointer_driver.h
|
| diff --git a/content/browser/renderer_host/input/synthetic_pointer_driver.h b/content/browser/renderer_host/input/synthetic_pointer_driver.h
|
| index 32579fb88fbf615ae049dea80c54bd64cea7e86e..b1b5e227b887e75b3da47b16d4db9707eebc6265 100644
|
| --- a/content/browser/renderer_host/input/synthetic_pointer_driver.h
|
| +++ b/content/browser/renderer_host/input/synthetic_pointer_driver.h
|
| @@ -28,9 +28,15 @@ class CONTENT_EXPORT SyntheticPointerDriver {
|
| virtual void DispatchEvent(SyntheticGestureTarget* target,
|
| const base::TimeTicks& timestamp) = 0;
|
|
|
| - virtual void Press(float x, float y, int index = 0) = 0;
|
| + virtual void Press(float x,
|
| + float y,
|
| + int index = 0,
|
| + SyntheticPointerActionParams::Button button =
|
| + SyntheticPointerActionParams::Button::LEFT) = 0;
|
| virtual void Move(float x, float y, int index = 0) = 0;
|
| - virtual void Release(int index = 0) = 0;
|
| + virtual void Release(int index = 0,
|
| + SyntheticPointerActionParams::Button button =
|
| + SyntheticPointerActionParams::Button::LEFT) = 0;
|
|
|
| // Check if the user inputs in the SyntheticPointerActionParams can generate
|
| // a valid sequence of pointer actions.
|
|
|