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

Commit 02a77666 authored by Dave Mankoff's avatar Dave Mankoff
Browse files

Change import path for RunningTaskInfo in IPip.aidl

This fixes sysui-studio's gradle build by importing RunningTaskInfo
directly instead of ActivityManager. Evidently gradle's aidl processor
can't handle that.

Fixes: 390634381
Flag: EXEMPT minor refactor
Test: gradle :WMShell:compileDebugAidl
Change-Id: Ida2cda2af4dc662987a3a5dbf2cf475ddded3165
parent 8dd8237f
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -16,7 +16,7 @@

package com.android.wm.shell.common.pip;

import android.app.ActivityManager;
import android.app.ActivityManager.RunningTaskInfo;
import android.app.PictureInPictureParams;
import android.view.SurfaceControl;
import android.content.ComponentName;
@@ -42,7 +42,7 @@ interface IPip {
              bounds
     * @return destination bounds the PiP window should land into
     */
    Rect startSwipePipToHome(in ActivityManager.RunningTaskInfo taskInfo, int launcherRotation,
    Rect startSwipePipToHome(in RunningTaskInfo taskInfo, int launcherRotation,
            in Rect hotseatKeepClearArea) = 1;

    /**