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

Commit 3f73e57d authored by Louis Chang's avatar Louis Chang Committed by Automerger Merge Worker
Browse files

Merge "Adding comments and removes unnecessary parameter" into tm-qpr-dev am: 36f670f6

parents a71995dd 36f670f6
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -5649,7 +5649,7 @@ final class ActivityRecord extends WindowToken implements WindowManagerService.A
        ProtoLog.v(WM_DEBUG_ADD_REMOVE, "notifyAppResumed: wasStopped=%b %s",
                wasStopped, this);
        mAppStopped = false;
        // Allow the window to turn the screen on once the app is resumed again.
        // Allow the window to turn the screen on once the app is started and resumed.
        if (mAtmService.getActivityStartController().isInExecution()) {
            setCurrentLaunchCanTurnScreenOn(true);
        }
+2 −1
Original line number Diff line number Diff line
@@ -94,6 +94,7 @@ public class ActivityStartController {

    boolean mCheckedForSetup = false;

    /** Whether an {@link ActivityStarter} is currently executing (starting an Activity). */
    private boolean mInExecution = false;

    /**
@@ -129,7 +130,7 @@ public class ActivityStartController {
        return mFactory.obtain().setIntent(intent).setReason(reason);
    }

    void onExecutionStarted(ActivityStarter starter) {
    void onExecutionStarted() {
        mInExecution = true;
    }

+1 −1
Original line number Diff line number Diff line
@@ -1268,7 +1268,7 @@ class ActivityStarter {
    }

    private void onExecutionStarted() {
        mController.onExecutionStarted(this);
        mController.onExecutionStarted();
    }

    private boolean isHomeApp(int uid, @Nullable String packageName) {