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

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

Issue 2097273002: [Chromoting] Add InputMonitor and InputState (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 6 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/TapEventParameter.java
diff --git a/remoting/android/java/src/org/chromium/chromoting/TapEventParameter.java b/remoting/android/java/src/org/chromium/chromoting/TapEventParameter.java
index 0e5b2f8c3175c6f528200852cb9941a91556ca9a..8dd505e3fa93e25e8e517156a66b52d1dc201303 100644
--- a/remoting/android/java/src/org/chromium/chromoting/TapEventParameter.java
+++ b/remoting/android/java/src/org/chromium/chromoting/TapEventParameter.java
@@ -13,10 +13,12 @@ public final class TapEventParameter {
public final int pointerCount;
public final float x;
public final float y;
+ public boolean handled;
public TapEventParameter(int pointerCount, float x, float y) {
this.pointerCount = pointerCount;
this.x = x;
this.y = y;
+ this.handled = false;
}
}

Powered by Google App Engine
This is Rietveld 408576698