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

Commit a39ccb6c authored by Joe Onorato's avatar Joe Onorato
Browse files

Use the private version of userActivity.

We were flunking the enforcement of DEVICE_POWER since apps don't need that permission to use a wake
lock.

Bug: 3051596
Change-Id: I1910d8402adb3e9a4d8635de5d2a301f6286f216
parent 4ba2817c
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -871,7 +871,7 @@ class PowerManagerService extends IPowerManager.Stub
            mWakeLockState = mLocks.gatherState();
            // goes in the middle to reduce flicker
            if ((wl.flags & PowerManager.ON_AFTER_RELEASE) != 0) {
                userActivity(SystemClock.uptimeMillis(), false);
                userActivity(SystemClock.uptimeMillis(), -1, false, OTHER_EVENT, false);
            }
            setPowerState(mWakeLockState | mUserState);
        }