diff options
| -rw-r--r-- | core/java/android/app/IActivityClientController.aidl | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/core/java/android/app/IActivityClientController.aidl b/core/java/android/app/IActivityClientController.aidl index ed4836e31209..09b0c2f96b13 100644 --- a/core/java/android/app/IActivityClientController.aidl +++ b/core/java/android/app/IActivityClientController.aidl @@ -37,7 +37,11 @@ import com.android.internal.policy.IKeyguardDismissCallback; interface IActivityClientController { oneway void activityIdle(in IBinder token, in Configuration config, in boolean stopProfiling); oneway void activityResumed(in IBinder token, in boolean handleSplashScreenExit); - oneway void activityTopResumedStateLost(); + /** + * This call is not one-way because {@link #activityPaused()) is not one-way, or + * the top-resumed-lost could be reported after activity paused. + */ + void activityTopResumedStateLost(); /** * Notifies that the activity has completed paused. This call is not one-way because it can make * consecutive launch in the same process more coherent. About the order of binder call, it |