Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(822)

Unified Diff: remoting/android/java/src/org/chromium/chromoting/DesktopViewInterface.java

Issue 2023133002: Use Event to render feedback animations. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Resolve review comments Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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();

Powered by Google App Engine
This is Rietveld 408576698