Merge "Sending split screen stack change to Launcher whenever it changes, instead of Launcher pulling it" into rvc-dev am: 2fed0a734e

Change-Id: I5d1a56aa7d6ed336115f9b4b74e9790024368f10
This commit is contained in:
TreeHugger Robot
2020-05-19 20:06:34 +00:00
committed by Automerger Merge Worker
3 changed files with 54 additions and 73 deletions

View File

@@ -16,6 +16,7 @@
package com.android.systemui.shared.recents;
import android.graphics.Rect;
import android.graphics.Region;
import android.os.Bundle;
import android.view.MotionEvent;
@@ -69,4 +70,9 @@ oneway interface IOverviewProxy {
* Sent when some system ui state changes.
*/
void onSystemUiStateChanged(int stateFlags) = 16;
/**
* Sent when the split screen is resized
*/
void onSplitScreenSecondaryBoundsChanged(in Rect bounds, in Rect insets) = 17;
}