diff options
author | Jeff Brown <jeffbrown@google.com> | 2010-06-23 10:17:22 -0700 |
---|---|---|
committer | Android Git Automerger <android-git-automerger@android.com> | 2010-06-23 10:17:22 -0700 |
commit | e981c883d5ca99ccb97c317d824b9c288b613f67 (patch) | |
tree | c50548eaa1c14647b5555a2842c7544d4d302b82 /core/java | |
parent | 7fb6a8b3458d58188d2bf4c19ada03e62ae57cd9 (diff) | |
parent | b1efc3f68277a8c38c21e2d2e8ce05287118ecfe (diff) | |
download | frameworks_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')
-rw-r--r-- | core/java/android/os/MessageQueue.java | 7 | ||||
-rw-r--r-- | core/java/android/view/InputChannel.java | 2 | ||||
-rw-r--r-- | core/java/android/view/InputTarget.java | 2 |
3 files changed, 2 insertions, 9 deletions
diff --git a/core/java/android/os/MessageQueue.java b/core/java/android/os/MessageQueue.java index df30c76..adb11c8 100644 --- a/core/java/android/os/MessageQueue.java +++ b/core/java/android/os/MessageQueue.java @@ -341,11 +341,4 @@ public class MessageQueue { } } */ - - void poke() - { - synchronized (this) { - nativeWake(); - } - } } 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; |