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

Commit 356955e9 authored by Jorim Jaggi's avatar Jorim Jaggi Committed by android-build-merger
Browse files

Call userActivity when dismissing keyguard am: b9d04915 am: f564799b

am: 501b0cbe

Change-Id: I254c082fa58b28ea355599d79f71129363f53a38
parents 5940afdb 501b0cbe
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -1395,6 +1395,7 @@ public class KeyguardViewMediator extends SystemUI {
    public void keyguardDone(boolean authenticated) {
        Trace.beginSection("KeyguardViewMediator#keyguardDone");
        if (DEBUG) Log.d(TAG, "keyguardDone(" + authenticated +")");
        userActivity();
        EventLog.writeEvent(70000, 2);
        Message msg = mHandler.obtainMessage(KEYGUARD_DONE, authenticated ? 1 : 0);
        mHandler.sendMessage(msg);
@@ -1652,6 +1653,7 @@ public class KeyguardViewMediator extends SystemUI {
        @Override
        public void run() {
            Trace.beginSection("KeyguardViewMediator.mKeyGuardGoingAwayRunnable");
            if (DEBUG) Log.d(TAG, "keyguardGoingAway");
            try {
                mStatusBarKeyguardViewManager.keyguardGoingAway();

@@ -1723,6 +1725,8 @@ public class KeyguardViewMediator extends SystemUI {

    private void handleStartKeyguardExitAnimation(long startTime, long fadeoutDuration) {
        Trace.beginSection("KeyguardViewMediator#handleStartKeyguardExitAnimation");
        if (DEBUG) Log.d(TAG, "handleStartKeyguardExitAnimation startTime=" + startTime
                + " fadeoutDuration=" + fadeoutDuration);
        synchronized (KeyguardViewMediator.this) {

            if (!mHiding) {