| Index: remoting/android/java/src/org/chromium/chromoting/DesktopViewInterface.java
|
| diff --git a/remoting/android/java/src/org/chromium/chromoting/DesktopViewInterface.java b/remoting/android/java/src/org/chromium/chromoting/DesktopViewInterface.java
|
| index b9d3147a26b3aa6c050e52abe920b88d3b53dde8..41a29c178b6d75148e2da337488bbd3feeb9c8c6 100644
|
| --- a/remoting/android/java/src/org/chromium/chromoting/DesktopViewInterface.java
|
| +++ b/remoting/android/java/src/org/chromium/chromoting/DesktopViewInterface.java
|
| @@ -4,12 +4,14 @@
|
|
|
| package org.chromium.chromoting;
|
|
|
| +import android.graphics.Point;
|
| +
|
| /**
|
| * Callback interface to allow the TouchInputHandler to request actions on the DesktopView.
|
| */
|
| public interface DesktopViewInterface {
|
| /** Triggers a brief animation to indicate the existence and location of an input event. */
|
| - void showInputFeedback(DesktopView.InputFeedbackType feedbackToShow);
|
| + void showInputFeedback(DesktopView.InputFeedbackType feedbackToShow, Point pos);
|
|
|
| /** Shows the action bar. */
|
| void showActionBar();
|
|
|