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

Commit 96912d03 authored by Wale Ogunwale's avatar Wale Ogunwale Committed by Android (Google) Code Review
Browse files

Merge "Clear calling identity on Session.startingMovingTask" into nyc-dev

parents 62b6a00b 09e1b8d0
Loading
Loading
Loading
Loading
+6 −1
Original line number Diff line number Diff line
@@ -369,7 +369,12 @@ final class Session extends IWindowSession.Stub
        if (DEBUG_TASK_POSITIONING) Slog.d(
                TAG_WM, "startMovingTask: {" + startX + "," + startY + "}");

        long ident = Binder.clearCallingIdentity();
        try {
            return mService.startMovingTask(window, startX, startY);
        } finally {
            Binder.restoreCallingIdentity(ident);
        }
    }

    public void reportDropResult(IWindow window, boolean consumed) {