diff options
author | 2014-04-11 08:46:03 +0000 | |
---|---|---|
committer | 2014-04-11 08:46:03 +0000 | |
commit | 88a34b2f4351fe58b042f11af08ffd967ef7ce4c (patch) | |
tree | 375e0f02c5ee6579981dac6db04cc2f2b08eb3fd | |
parent | dc5992e48ca88d882313d206f8174efcc5e01455 (diff) | |
parent | 974279d98917c589181b70ea1c377842e7717643 (diff) |
am 974279d9: am db19e463: Remove unnecessary policy flags.
* commit '974279d98917c589181b70ea1c377842e7717643':
Remove unnecessary policy flags.
-rw-r--r-- | include/input/Input.h | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/include/input/Input.h b/include/input/Input.h index bb5ceaf20b..077a03bf28 100644 --- a/include/input/Input.h +++ b/include/input/Input.h @@ -178,13 +178,9 @@ enum { /* These flags are set by the input reader policy as it intercepts each event. */ - // Indicates that the screen was off when the event was received and the event - // should wake the device. - POLICY_FLAG_WOKE_HERE = 0x10000000, - - // Indicates that the screen was dim when the event was received and the event - // should brighten the device. - POLICY_FLAG_BRIGHT_HERE = 0x20000000, + // Indicates that the device was in an interactive state when the + // event was intercepted. + POLICY_FLAG_INTERACTIVE = 0x20000000, // Indicates that the event should be dispatched to applications. // The input event should still be sent to the InputDispatcher so that it can see all |