summaryrefslogtreecommitdiff
path: root/core/java/android
diff options
context:
space:
mode:
authorIssei Suzuki <issei@google.com>2021-02-05 15:01:44 +0000
committerAndroid (Google) Code Review <android-gerrit@google.com>2021-02-05 15:01:44 +0000
commit5c3c5ea216d537a86f0849a3211b9c5f48632211 (patch)
tree942be9fee4abe3fb11d88e0c62570d7dbffa1b12 /core/java/android
parentfddf14356a0db44fc5efe1fed34ee40662b25e16 (diff)
parent08f0716df64ebfd58e748aa0ef00d24e49899baa (diff)
Merge "Make keyguard exit animation to remote animation." into sc-dev
Diffstat (limited to 'core/java/android')
-rw-r--r--core/java/android/view/IRemoteAnimationRunner.aidl6
1 files changed, 5 insertions, 1 deletions
diff --git a/core/java/android/view/IRemoteAnimationRunner.aidl b/core/java/android/view/IRemoteAnimationRunner.aidl
index 423e23d2bc08..1f64fb8ca2ec 100644
--- a/core/java/android/view/IRemoteAnimationRunner.aidl
+++ b/core/java/android/view/IRemoteAnimationRunner.aidl
@@ -30,11 +30,15 @@ oneway interface IRemoteAnimationRunner {
/**
* Called when the process needs to start the remote animation.
*
+ * @param transition The old transition type. Must be one of WindowManager.TRANSIT_OLD_* values.
* @param apps The list of apps to animate.
+ * @param wallpapers The list of wallpapers to animate.
+ * @param nonApps The list of non-app windows such as Bubbles to animate.
* @param finishedCallback The callback to invoke when the animation is finished.
*/
@UnsupportedAppUsage(maxTargetSdk = 30, trackingBug = 170729553)
- void onAnimationStart(in RemoteAnimationTarget[] apps, in RemoteAnimationTarget[] wallpapers,
+ void onAnimationStart(int transit, in RemoteAnimationTarget[] apps,
+ in RemoteAnimationTarget[] wallpapers, in RemoteAnimationTarget[] nonApps,
in IRemoteAnimationFinishedCallback finishedCallback);
/**