diff options
Diffstat (limited to 'core/java')
| -rw-r--r-- | core/java/android/view/WindowManager.java | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/core/java/android/view/WindowManager.java b/core/java/android/view/WindowManager.java index 9a3c7066e7f8..8cb05da93b7f 100644 --- a/core/java/android/view/WindowManager.java +++ b/core/java/android/view/WindowManager.java @@ -1217,6 +1217,14 @@ public interface WindowManager extends ViewManager { public static final int TYPE_STATUS_BAR_ADDITIONAL = FIRST_SYSTEM_WINDOW + 41; /** + * Similar to TYPE_APPLICATION_OVERLAY, but trusted to overlay other windows since it is + * is coming from the system. + * @hide + */ + // TODO(b/155781676): Remove and replace call points with trustedOverlay when that is ready. + public static final int TYPE_TRUSTED_APPLICATION_OVERLAY = FIRST_SYSTEM_WINDOW + 42; + + /** * End of types of system windows. */ public static final int LAST_SYSTEM_WINDOW = 2999; |
