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

Commit 5f489546 authored by Michael Wright's avatar Michael Wright Committed by android-build-merger
Browse files

Merge "Make shutdown use the UI context." into oc-dev am: 5879d28f

am: 5ac389b0

Change-Id: Iab7dff9378e84df01cc8aa61f53b889bc1222001
parents 464e0be9 5ac389b0
Loading
Loading
Loading
Loading
+10 −4
Original line number Diff line number Diff line
@@ -763,8 +763,10 @@ public class StatusBarManagerService extends IStatusBarService.Stub {
        enforceStatusBarService();
        long identity = Binder.clearCallingIdentity();
        try {
            // ShutdownThread displays UI, so give it a UI context.
            mHandler.post(() ->
                    ShutdownThread.shutdown(mContext, PowerManager.SHUTDOWN_USER_REQUESTED, false));
                    ShutdownThread.shutdown(getUiContext(),
                        PowerManager.SHUTDOWN_USER_REQUESTED, false));
        } finally {
            Binder.restoreCallingIdentity(identity);
        }
@@ -780,11 +782,11 @@ public class StatusBarManagerService extends IStatusBarService.Stub {
        try {
            mHandler.post(() -> {
                // ShutdownThread displays UI, so give it a UI context.
                Context uiContext = ActivityThread.currentActivityThread().getSystemUiContext();
                if (safeMode) {
                    ShutdownThread.rebootSafeMode(uiContext, false);
                    ShutdownThread.rebootSafeMode(getUiContext(), false);
                } else {
                    ShutdownThread.reboot(uiContext, PowerManager.SHUTDOWN_USER_REQUESTED, false);
                    ShutdownThread.reboot(getUiContext(),
                            PowerManager.SHUTDOWN_USER_REQUESTED, false);
                }
            });
        } finally {
@@ -1018,4 +1020,8 @@ public class StatusBarManagerService extends IStatusBarService.Stub {
            }
        }
    }

    private static final Context getUiContext() {
        return ActivityThread.currentActivityThread().getSystemUiContext();
    }
}