diff options
| -rw-r--r-- | packages/SystemUI/shared/src/com/android/systemui/shared/recents/ISystemUiProxy.aidl | 21 | ||||
| -rw-r--r-- | packages/SystemUI/src/com/android/systemui/recents/OverviewProxyService.java | 17 |
2 files changed, 0 insertions, 38 deletions
diff --git a/packages/SystemUI/shared/src/com/android/systemui/shared/recents/ISystemUiProxy.aidl b/packages/SystemUI/shared/src/com/android/systemui/shared/recents/ISystemUiProxy.aidl index e743c4e5a83d..a030bf629507 100644 --- a/packages/SystemUI/shared/src/com/android/systemui/shared/recents/ISystemUiProxy.aidl +++ b/packages/SystemUI/shared/src/com/android/systemui/shared/recents/ISystemUiProxy.aidl @@ -42,12 +42,6 @@ interface ISystemUiProxy { void onOverviewShown(boolean fromHome) = 6; /** - * Get the secondary split screen app's rectangle when not minimized. - * @deprecated - */ - Rect getNonMinimizedSplitScreenSecondaryBounds() = 7; - - /** * Control the {@param alpha} of the option nav bar button (back-button in 2 button mode * and home handle & background in gestural mode). The {@param animate} is currently only * supported for 2 button mode. @@ -94,21 +88,6 @@ interface ISystemUiProxy { */ void stopScreenPinning() = 17; - /** - * Handle the provided image as if it was a screenshot. - * - * Deprecated, use handleImageBundleAsScreenshot with image bundle and UserTask - * @deprecated - */ - void handleImageAsScreenshot(in Bitmap screenImage, in Rect locationInScreen, - in Insets visibleInsets, int taskId) = 21; - - /** - * Sets the split-screen divider minimized state - * @deprecated - */ - void setSplitScreenMinimized(boolean minimized) = 22; - /* * Notifies that the swipe-to-home (recents animation) is finished. */ diff --git a/packages/SystemUI/src/com/android/systemui/recents/OverviewProxyService.java b/packages/SystemUI/src/com/android/systemui/recents/OverviewProxyService.java index da943d2ea594..6c58c459c2c2 100644 --- a/packages/SystemUI/src/com/android/systemui/recents/OverviewProxyService.java +++ b/packages/SystemUI/src/com/android/systemui/recents/OverviewProxyService.java @@ -297,12 +297,6 @@ public class OverviewProxyService extends CurrentUserTracker implements } @Override - public Rect getNonMinimizedSplitScreenSecondaryBounds() { - // Deprecated - return null; - } - - @Override public void setNavBarButtonAlpha(float alpha, boolean animate) { verifyCallerAndClearCallingIdentityPostMain("setNavBarButtonAlpha", () -> notifyNavBarButtonAlphaChanged(alpha, animate)); @@ -349,17 +343,6 @@ public class OverviewProxyService extends CurrentUserTracker implements } @Override - public void handleImageAsScreenshot(Bitmap screenImage, Rect locationInScreen, - Insets visibleInsets, int taskId) { - // Deprecated - } - - @Override - public void setSplitScreenMinimized(boolean minimized) { - // Deprecated - } - - @Override public void notifySwipeToHomeFinished() { verifyCallerAndClearCallingIdentity("notifySwipeToHomeFinished", () -> mPipOptional.ifPresent( |