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

Commit e1cf52e4 authored by Wale Ogunwale's avatar Wale Ogunwale Committed by android-build-merger
Browse files

Merge "Clear calling identity on Session.startingMovingTask" into nyc-dev am: 96912d03

am: 28123471

* commit '28123471':
  Clear calling identity on Session.startingMovingTask
parents bf6da7ad 28123471
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) {