Merge "Partial revert of keyguard checks" into rvc-dev am: 2a3c62046c am: 8007d1ee8c

Change-Id: I87788610ce5a660f93d52327547da0ec2d44b1fd
This commit is contained in:
Yuncheol Heo
2020-05-08 01:45:09 +00:00
committed by Automerger Merge Worker

View File

@@ -213,7 +213,7 @@ public class CarKeyguardViewController extends OverlayViewController implements
@Override
public void onCancelClicked() {
if (!mShowing) return;
if (mBouncer == null) return;
getOverlayViewGlobalStateController().setWindowFocusable(/* focusable= */ false);
getOverlayViewGlobalStateController().setWindowNeedsInput(/* needsInput= */ false);
@@ -234,7 +234,7 @@ public class CarKeyguardViewController extends OverlayViewController implements
@Override
public void startPreHideAnimation(Runnable finishRunnable) {
if (!mShowing) return;
if (mBouncer == null) return;
mBouncer.startPreHideAnimation(finishRunnable);
}