summaryrefslogtreecommitdiffstats
path: root/core/java/android/view
diff options
context:
space:
mode:
authorJeff Brown <jeffbrown@google.com>2010-06-23 10:17:22 -0700
committerAndroid Git Automerger <android-git-automerger@android.com>2010-06-23 10:17:22 -0700
commite981c883d5ca99ccb97c317d824b9c288b613f67 (patch)
treec50548eaa1c14647b5555a2842c7544d4d302b82 /core/java/android/view
parent7fb6a8b3458d58188d2bf4c19ada03e62ae57cd9 (diff)
parentb1efc3f68277a8c38c21e2d2e8ce05287118ecfe (diff)
downloadframeworks_base-e981c883d5ca99ccb97c317d824b9c288b613f67.zip
frameworks_base-e981c883d5ca99ccb97c317d824b9c288b613f67.tar.gz
frameworks_base-e981c883d5ca99ccb97c317d824b9c288b613f67.tar.bz2
am b1efc3f6: am 7fbdc84e: More native input event dispatching.
Merge commit 'b1efc3f68277a8c38c21e2d2e8ce05287118ecfe' * commit 'b1efc3f68277a8c38c21e2d2e8ce05287118ecfe': More native input event dispatching.
Diffstat (limited to 'core/java/android/view')
-rw-r--r--core/java/android/view/InputChannel.java2
-rw-r--r--core/java/android/view/InputTarget.java2
2 files changed, 2 insertions, 2 deletions
diff --git a/core/java/android/view/InputChannel.java b/core/java/android/view/InputChannel.java
index 66a83b8..e5ebc69 100644
--- a/core/java/android/view/InputChannel.java
+++ b/core/java/android/view/InputChannel.java
@@ -26,7 +26,7 @@ import android.util.Slog;
* to the ViewRoot through a Binder transaction as part of registering the Window.
* @hide
*/
-public class InputChannel implements Parcelable {
+public final class InputChannel implements Parcelable {
private static final String TAG = "InputChannel";
public static final Parcelable.Creator<InputChannel> CREATOR
diff --git a/core/java/android/view/InputTarget.java b/core/java/android/view/InputTarget.java
index e56e03c..6ff7305 100644
--- a/core/java/android/view/InputTarget.java
+++ b/core/java/android/view/InputTarget.java
@@ -25,7 +25,7 @@ package android.view;
* These parameters are used by the native input dispatching code.
* @hide
*/
-public class InputTarget {
+public final class InputTarget {
public InputChannel mInputChannel;
public int mFlags;
public long mTimeoutNanos;