diff options
author | Nick Armstrong-Crews <strongarm@google.com> | 2015-08-27 13:53:25 -0700 |
---|---|---|
committer | Nick Armstrong-Crews <strongarm@google.com> | 2015-09-04 10:20:22 -0700 |
commit | 677adf1e66ba83b8fb2c849c181303b35bd489bc (patch) | |
tree | c2043f8b554c552d3482dca596402ddc7cc3e219 /api | |
parent | 38ae119688f94d68c42d8d29958038e37bb74915 (diff) | |
download | frameworks_base-677adf1e66ba83b8fb2c849c181303b35bd489bc.zip frameworks_base-677adf1e66ba83b8fb2c849c181303b35bd489bc.tar.gz frameworks_base-677adf1e66ba83b8fb2c849c181303b35bd489bc.tar.bz2 |
Handle KEYCODE_SOFT_SLEEP from Ungaze.
Needed for Ungaze to trigger "soft sleep" (respecting wake locks); operates by
sending new KEYCODE_SOFT_SLEEP to PhoneWindowManager, which calls
PowerManagerService's new method setUserInactiveOverride (thereby
causing immediate sleep, modulo wakelocks, upon next iteration of
PowerManagerService's main loop).
BUG: b/23589870
Change-Id: I24a96bd6db8ff28674c907f2898e49c4f6140209
Diffstat (limited to 'api')
-rw-r--r-- | api/current.txt | 1 | ||||
-rw-r--r-- | api/system-current.txt | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/api/current.txt b/api/current.txt index d7fdb2d..1946e49 100644 --- a/api/current.txt +++ b/api/current.txt @@ -35217,6 +35217,7 @@ package android.view { field public static final int KEYCODE_SLEEP = 223; // 0xdf field public static final int KEYCODE_SOFT_LEFT = 1; // 0x1 field public static final int KEYCODE_SOFT_RIGHT = 2; // 0x2 + field public static final int KEYCODE_SOFT_SLEEP = 276; // 0x114 field public static final int KEYCODE_SPACE = 62; // 0x3e field public static final int KEYCODE_STAR = 17; // 0x11 field public static final int KEYCODE_STB_INPUT = 180; // 0xb4 diff --git a/api/system-current.txt b/api/system-current.txt index f464292..b2a1539 100644 --- a/api/system-current.txt +++ b/api/system-current.txt @@ -37520,6 +37520,7 @@ package android.view { field public static final int KEYCODE_SLEEP = 223; // 0xdf field public static final int KEYCODE_SOFT_LEFT = 1; // 0x1 field public static final int KEYCODE_SOFT_RIGHT = 2; // 0x2 + field public static final int KEYCODE_SOFT_SLEEP = 276; // 0x114 field public static final int KEYCODE_SPACE = 62; // 0x3e field public static final int KEYCODE_STAR = 17; // 0x11 field public static final int KEYCODE_STB_INPUT = 180; // 0xb4 |