diff options
author | Jeff Brown <jeffbrown@google.com> | 2010-10-15 00:54:27 -0700 |
---|---|---|
committer | Jeff Brown <jeffbrown@google.com> | 2010-10-15 17:10:55 -0700 |
commit | 3b2b354ec1ba070eae13391d004d97a3e1403050 (patch) | |
tree | e2647c9a8797a4b3542deab7d1cb766967b35879 /libs/ui/InputDispatcher.cpp | |
parent | 1edb2bda37726ba6bc6feeafad25ea51b1cacaee (diff) | |
download | frameworks_base-3b2b354ec1ba070eae13391d004d97a3e1403050.zip frameworks_base-3b2b354ec1ba070eae13391d004d97a3e1403050.tar.gz frameworks_base-3b2b354ec1ba070eae13391d004d97a3e1403050.tar.bz2 |
Add support for secure system overlays.
Manual merge from Gingerbread.
This change adds a new window type for secure system overlays
created by the system itself from non-secure system overlays that
might be created by applications that have the system alert permission.
Secure views ignore the presence of secure system overlays.
Bug: 3098519
Change-Id: Id876736fd8bf332ff9a5428bde59f5268aa49c3a
Diffstat (limited to 'libs/ui/InputDispatcher.cpp')
-rw-r--r-- | libs/ui/InputDispatcher.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/libs/ui/InputDispatcher.cpp b/libs/ui/InputDispatcher.cpp index 84c3db8..949dc4d 100644 --- a/libs/ui/InputDispatcher.cpp +++ b/libs/ui/InputDispatcher.cpp @@ -149,7 +149,8 @@ bool InputWindow::frameContainsPoint(int32_t x, int32_t y) const { bool InputWindow::isTrustedOverlay() const { return layoutParamsType == TYPE_INPUT_METHOD - || layoutParamsType == TYPE_INPUT_METHOD_DIALOG; + || layoutParamsType == TYPE_INPUT_METHOD_DIALOG + || layoutParamsType == TYPE_SECURE_SYSTEM_OVERLAY; } @@ -1350,7 +1351,7 @@ void InputDispatcher::addMonitoringTargetsLocked() { target.flags = 0; target.xOffset = 0; target.yOffset = 0; - target.windowType = InputWindow::TYPE_SYSTEM_OVERLAY; + target.windowType = -1; } } |