diff options
author | Filip Gruszczynski <gruszczy@google.com> | 2015-05-20 20:11:39 -0700 |
---|---|---|
committer | Filip Gruszczynski <gruszczy@google.com> | 2015-05-20 20:15:29 -0700 |
commit | c7becb7ee78881646251ff4846e63eb6b96bf7ec (patch) | |
tree | a42141a24ea950f26b21faf95157f8f2513f66d3 /core/java/android/view/IWindowSession.aidl | |
parent | 8562b08f04c1309cf40db1e749d612b6824f1d12 (diff) | |
parent | 47249f2a9e49aa9626369517315eafc6b42fd8e9 (diff) | |
download | frameworks_base-c7becb7ee78881646251ff4846e63eb6b96bf7ec.zip frameworks_base-c7becb7ee78881646251ff4846e63eb6b96bf7ec.tar.gz frameworks_base-c7becb7ee78881646251ff4846e63eb6b96bf7ec.tar.bz2 |
resolved conflicts for merge of 47249f2a to mnc-dev
This is a merge of chin support.
Change-Id: I436b751b3c4aaa6b46cfcdb475e02eedfa5a5635
Diffstat (limited to 'core/java/android/view/IWindowSession.aidl')
-rw-r--r-- | core/java/android/view/IWindowSession.aidl | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/core/java/android/view/IWindowSession.aidl b/core/java/android/view/IWindowSession.aidl index fc0148f..19253dd 100644 --- a/core/java/android/view/IWindowSession.aidl +++ b/core/java/android/view/IWindowSession.aidl @@ -79,11 +79,13 @@ interface IWindowSession { * contents to make sure the user can see it. This is different than * <var>outContentInsets</var> in that these insets change transiently, * so complex relayout of the window should not happen based on them. + * @param outOutsets Rect in which is placed the dead area of the screen that we would like to + * treat as real display. Example of such area is a chin in some models of wearable devices. * @param outConfiguration New configuration of window, if it is now * becoming visible and the global configuration has changed since it * was last displayed. * @param outSurface Object in which is placed the new display surface. - * + * * @return int Result flags: {@link WindowManagerGlobal#RELAYOUT_SHOW_FOCUS}, * {@link WindowManagerGlobal#RELAYOUT_FIRST_TIME}. */ @@ -91,7 +93,7 @@ interface IWindowSession { int requestedWidth, int requestedHeight, int viewVisibility, int flags, out Rect outFrame, out Rect outOverscanInsets, out Rect outContentInsets, out Rect outVisibleInsets, out Rect outStableInsets, - out Configuration outConfig, out Surface outSurface); + out Rect outOutsets, out Configuration outConfig, out Surface outSurface); /** * If a call to relayout() asked to have the surface destroy deferred, |