summaryrefslogtreecommitdiff
path: root/core/java
diff options
context:
space:
mode:
authorTiger Huang <tigerhuang@google.com>2022-01-24 08:03:20 +0000
committerAndroid (Google) Code Review <android-gerrit@google.com>2022-01-24 08:03:20 +0000
commite99c5306cdacf03d729721c97bab009ea658c46c (patch)
tree5ff40b37d2ad3e63631ebf2251901968cdd8651d /core/java
parentbf3f4e59039ff8a59a2881b6f323d6509d7216b9 (diff)
parente45f1e5facd2851e1708304689408f3187b7e4b9 (diff)
Merge "Remove forwarded insets"
Diffstat (limited to 'core/java')
-rw-r--r--core/java/android/view/IWindowManager.aidl11
1 files changed, 0 insertions, 11 deletions
diff --git a/core/java/android/view/IWindowManager.aidl b/core/java/android/view/IWindowManager.aidl
index 4d24965a419e..fb848ad49eed 100644
--- a/core/java/android/view/IWindowManager.aidl
+++ b/core/java/android/view/IWindowManager.aidl
@@ -25,7 +25,6 @@ import android.content.res.CompatibilityInfo;
import android.content.res.Configuration;
import android.graphics.Bitmap;
import android.graphics.GraphicBuffer;
-import android.graphics.Insets;
import android.graphics.Point;
import android.graphics.Rect;
import android.graphics.Region;
@@ -485,16 +484,6 @@ interface IWindowManager
void getStableInsets(int displayId, out Rect outInsets);
/**
- * Set the forwarded insets on the display.
- * <p>
- * This is only used in case a virtual display is displayed on another display that has insets,
- * and the bounds of the virtual display is overlapping with the insets from the host display.
- * In that case, the contents on the virtual display won't be placed over the forwarded insets.
- * Only the owner of the display is permitted to set the forwarded insets on it.
- */
- void setForwardedInsets(int displayId, in Insets insets);
-
- /**
* Register shortcut key. Shortcut code is packed as:
* (MetaState << Integer.SIZE) | KeyCode
* @hide