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

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

Merge "Disable requestVisibleBehind." into oc-dev am: e33c33e3

am: 1c89591f

Change-Id: Ife4908481549c956a23118ce5f8422161cc73d9e
parents e81a6dff 1c89591f
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;
    }

    /**