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

Commit 1c89591f authored by Robert Carr's avatar Robert Carr Committed by android-build-merger
Browse files

Merge "Disable requestVisibleBehind." into oc-dev

am: e33c33e3

Change-Id: Ie0733cb79acbe34536c4c031f1234dac134841d3
parents 8e079af6 e33c33e3
Loading
Loading
Loading
Loading
+1 −11
Original line number Diff line number Diff line
@@ -6416,17 +6416,7 @@ public class Activity extends ContextThemeWrapper
     */
    @Deprecated
    public boolean requestVisibleBehind(boolean visible) {
        if (!mResumed) {
            // Do not permit paused or stopped activities to do this.
            visible = false;
        }
        try {
            mVisibleBehind = ActivityManager.getService()
                    .requestVisibleBehind(mToken, visible) && visible;
        } catch (RemoteException e) {
            mVisibleBehind = false;
        }
        return mVisibleBehind;
        return false;
    }

    /**