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

Commit dc1274c5 authored by Fyodor Kupolov's avatar Fyodor Kupolov Committed by Android Git Automerger
Browse files

am f8db59de: am 207d7bd3: Merge "Run isKeyguardSecure under system privileges"...

am f8db59de: am 207d7bd3: Merge "Run isKeyguardSecure under system privileges" into lmp-mr1-dev automerge: 562e87bd

* commit 'f8db59de':
  Run isKeyguardSecure under system privileges
parents dd6961d7 f8db59de
Loading
Loading
Loading
Loading
+6 −1
Original line number Diff line number Diff line
@@ -5401,7 +5401,12 @@ public class WindowManagerService extends IWindowManager.Stub

    @Override
    public boolean isKeyguardSecure() {
        long origId = Binder.clearCallingIdentity();
        try {
            return mPolicy.isKeyguardSecure();
        } finally {
            Binder.restoreCallingIdentity(origId);
        }
    }

    @Override