From 3540f936547fb5ce7b70dc7c60b7d8ffe0ce33c7 Mon Sep 17 00:00:00 2001 From: Wale Ogunwale Date: Tue, 2 Jun 2015 11:07:07 -0700 Subject: [PATCH] @hide TYPE_APPLICATION_ABOVE_SUB_PANEL window type. Bug: 21572285 Change-Id: Iff56a8ee5b91e02bd20afb7891bd94a0ec1abba9 --- api/current.txt | 1 - api/system-current.txt | 1 - core/java/android/view/WindowManager.java | 1 + 3 files changed, 1 insertion(+), 2 deletions(-) diff --git a/api/current.txt b/api/current.txt index d38e75a642f7b..c5a619025cae6 100644 --- a/api/current.txt +++ b/api/current.txt @@ -37390,7 +37390,6 @@ package android.view { field public static final int TITLE_CHANGED = 64; // 0x40 field public static final int TYPE_ACCESSIBILITY_OVERLAY = 2032; // 0x7f0 field public static final int TYPE_APPLICATION = 2; // 0x2 - field public static final int TYPE_APPLICATION_ABOVE_SUB_PANEL = 1005; // 0x3ed field public static final int TYPE_APPLICATION_ATTACHED_DIALOG = 1003; // 0x3eb field public static final int TYPE_APPLICATION_MEDIA = 1001; // 0x3e9 field public static final int TYPE_APPLICATION_PANEL = 1000; // 0x3e8 diff --git a/api/system-current.txt b/api/system-current.txt index 44d8c8ed7f142..93ce31b1a2f98 100644 --- a/api/system-current.txt +++ b/api/system-current.txt @@ -39651,7 +39651,6 @@ package android.view { field public static final int TITLE_CHANGED = 64; // 0x40 field public static final int TYPE_ACCESSIBILITY_OVERLAY = 2032; // 0x7f0 field public static final int TYPE_APPLICATION = 2; // 0x2 - field public static final int TYPE_APPLICATION_ABOVE_SUB_PANEL = 1005; // 0x3ed field public static final int TYPE_APPLICATION_ATTACHED_DIALOG = 1003; // 0x3eb field public static final int TYPE_APPLICATION_MEDIA = 1001; // 0x3e9 field public static final int TYPE_APPLICATION_PANEL = 1000; // 0x3e8 diff --git a/core/java/android/view/WindowManager.java b/core/java/android/view/WindowManager.java index f0c86e52d4a30..45bc1df334691 100644 --- a/core/java/android/view/WindowManager.java +++ b/core/java/android/view/WindowManager.java @@ -309,6 +309,7 @@ public interface WindowManager extends ViewManager { * Window type: a above sub-panel on top of an application window and it's * sub-panel windows. These windows are displayed on top of their attached window * and any {@link #TYPE_APPLICATION_SUB_PANEL} panels. + * @hide */ public static final int TYPE_APPLICATION_ABOVE_SUB_PANEL = FIRST_SUB_WINDOW + 5;