Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit c65aaa27 authored by Issei Suzuki's avatar Issei Suzuki Committed by Automerger Merge Worker
Browse files

Merge changes from topic "RemoteAnimationCanceled_with_Occluded-tm-dev" into...

Merge changes from topic "RemoteAnimationCanceled_with_Occluded-tm-dev" into tm-dev am: 97641ffe am: 574cd4ca

Original change: https://googleplex-android-review.googlesource.com/c/platform/frameworks/base/+/18976454



Change-Id: I8033ca610c21e1e8dfed626df0307d0355b8fa5a
Signed-off-by: default avatarAutomerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
parents 517ee9b4 574cd4ca
Loading
Loading
Loading
Loading
+5 −3
Original line number Diff line number Diff line
@@ -842,7 +842,6 @@ public class KeyguardViewMediator extends CoreStartable implements Dumpable,

                @Override
                public void onLaunchAnimationCancelled() {
                    setOccluded(true /* occluded */, false /* animate */);
                    Log.d(TAG, "Occlude launch animation cancelled. Occluded state is now: "
                            + mOccluded);
                }
@@ -915,7 +914,7 @@ public class KeyguardViewMediator extends CoreStartable implements Dumpable,
                        mUnoccludeAnimator.cancel();
                    }

                    setOccluded(isKeyguardOccluded, false /* animate */);
                    setOccluded(isKeyguardOccluded /* isOccluded */, false /* animate */);
                    Log.d(TAG, "Unocclude animation cancelled. Occluded state is now: "
                            + mOccluded);
                }
@@ -3205,7 +3204,10 @@ public class KeyguardViewMediator extends CoreStartable implements Dumpable,
        @Override
        public void onAnimationCancelled(boolean isKeyguardOccluded) throws RemoteException {
            super.onAnimationCancelled(isKeyguardOccluded);
            Log.d(TAG, "Occlude launch animation cancelled. Occluded state is now: " + mOccluded);
            setOccluded(isKeyguardOccluded /* occluded */, false /* animate */);

            Log.d(TAG, "Occlude animation cancelled by WM. "
                    + "Setting occluded state to: " + mOccluded);
        }
    }
}