| Index: chrome/android/java/src/org/chromium/chrome/browser/compositor/layouts/eventfilter/GestureHandler.java
|
| diff --git a/chrome/android/java/src/org/chromium/chrome/browser/compositor/layouts/eventfilter/GestureHandler.java b/chrome/android/java/src/org/chromium/chrome/browser/compositor/layouts/eventfilter/GestureHandler.java
|
| index f5a71c732c42c10558173d8156b5e092f56ece5b..0b2e50ed47e282fcee244a5669733c3e2f4a5b3b 100644
|
| --- a/chrome/android/java/src/org/chromium/chrome/browser/compositor/layouts/eventfilter/GestureHandler.java
|
| +++ b/chrome/android/java/src/org/chromium/chrome/browser/compositor/layouts/eventfilter/GestureHandler.java
|
| @@ -14,8 +14,9 @@ public interface GestureHandler {
|
| *
|
| * @param x The X position of the event in the host view space in dp.
|
| * @param y The Y position of the event in the host view space in dp.
|
| + * @param fromMouse Whether the event originates from a mouse.
|
| */
|
| - void onDown(float x, float y);
|
| + void onDown(float x, float y, boolean fromMouse);
|
|
|
| /**
|
| * Called on up or cancel touch event.
|
|
|