diff options
author | Jeff Brown <jeffbrown@google.com> | 2010-10-11 14:20:19 -0700 |
---|---|---|
committer | Jeff Brown <jeffbrown@google.com> | 2010-10-11 16:26:13 -0700 |
commit | b931a1b4183386ba840edc1bcc507eccf11b5cbe (patch) | |
tree | f9e1ba1030d392ab288ad13e5eaba32c65a96c76 /services/java/com/android/server/InputManager.java | |
parent | b699726018a0049665d8ad6b90dbc5af0e18f135 (diff) | |
download | frameworks_base-b931a1b4183386ba840edc1bcc507eccf11b5cbe.zip frameworks_base-b931a1b4183386ba840edc1bcc507eccf11b5cbe.tar.gz frameworks_base-b931a1b4183386ba840edc1bcc507eccf11b5cbe.tar.bz2 |
Fix an event injection bug when the policy is bypassed.
Added the concept of a "trusted" event to distinguish between events from
attached input devices or trusted injectors vs. other applications.
This change enables us to move certain policy decisions out of the
dispatcher and into the policy itself where they can be handled more
systematically.
Change-Id: I4d56fdcdd31aaa675d452088af39a70c4e039970
Diffstat (limited to 'services/java/com/android/server/InputManager.java')
-rw-r--r-- | services/java/com/android/server/InputManager.java | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/services/java/com/android/server/InputManager.java b/services/java/com/android/server/InputManager.java index ed1243a..df41264 100644 --- a/services/java/com/android/server/InputManager.java +++ b/services/java/com/android/server/InputManager.java @@ -359,11 +359,6 @@ public class InputManager { private static final String CALIBRATION_DIR_PATH = "usr/idc/"; @SuppressWarnings("unused") - public void virtualKeyDownFeedback() { - mWindowManagerService.mInputMonitor.virtualKeyDownFeedback(); - } - - @SuppressWarnings("unused") public void notifyConfigurationChanged(long whenNanos) { mWindowManagerService.sendNewConfiguration(); } |