From 8fe1d9c8ae2962f9bcf74cba559e11a5770eb22e Mon Sep 17 00:00:00 2001 From: Luca Zuccarini Date: Fri, 15 Mar 2024 13:13:52 +0000 Subject: [PATCH] Move interfaces to the shared library. Bug: 323863002 Flag: NA Test: NA, just a move Change-Id: I8390bdbc226f53da2cbdf2c4321a67e7b7223bec --- .../src/com/android/launcher3/HomeTransitionController.java | 2 +- quickstep/src/com/android/quickstep/SystemUiProxy.java | 4 ++-- .../src/com/android/quickstep/TouchInteractionService.java | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/quickstep/src/com/android/launcher3/HomeTransitionController.java b/quickstep/src/com/android/launcher3/HomeTransitionController.java index 2b50283acd..c4a2e9e17e 100644 --- a/quickstep/src/com/android/launcher3/HomeTransitionController.java +++ b/quickstep/src/com/android/launcher3/HomeTransitionController.java @@ -21,7 +21,7 @@ import androidx.annotation.Nullable; import com.android.launcher3.uioverrides.QuickstepLauncher; import com.android.quickstep.SystemUiProxy; -import com.android.wm.shell.transition.IHomeTransitionListener; +import com.android.wm.shell.shared.IHomeTransitionListener; /** * Controls launcher response to home activity visibility changing. diff --git a/quickstep/src/com/android/quickstep/SystemUiProxy.java b/quickstep/src/com/android/quickstep/SystemUiProxy.java index 72f67fc544..b6272dad87 100644 --- a/quickstep/src/com/android/quickstep/SystemUiProxy.java +++ b/quickstep/src/com/android/quickstep/SystemUiProxy.java @@ -91,13 +91,13 @@ import com.android.wm.shell.draganddrop.IDragAndDrop; import com.android.wm.shell.onehanded.IOneHanded; import com.android.wm.shell.recents.IRecentTasks; import com.android.wm.shell.recents.IRecentTasksListener; +import com.android.wm.shell.shared.IHomeTransitionListener; +import com.android.wm.shell.shared.IShellTransitions; import com.android.wm.shell.splitscreen.ISplitScreen; import com.android.wm.shell.splitscreen.ISplitScreenListener; import com.android.wm.shell.splitscreen.ISplitSelectListener; import com.android.wm.shell.startingsurface.IStartingWindow; import com.android.wm.shell.startingsurface.IStartingWindowListener; -import com.android.wm.shell.transition.IHomeTransitionListener; -import com.android.wm.shell.transition.IShellTransitions; import com.android.wm.shell.util.GroupedRecentTaskInfo; import java.io.PrintWriter; diff --git a/quickstep/src/com/android/quickstep/TouchInteractionService.java b/quickstep/src/com/android/quickstep/TouchInteractionService.java index b43c5201ce..e931d874b1 100644 --- a/quickstep/src/com/android/quickstep/TouchInteractionService.java +++ b/quickstep/src/com/android/quickstep/TouchInteractionService.java @@ -135,9 +135,9 @@ import com.android.wm.shell.desktopmode.IDesktopMode; import com.android.wm.shell.draganddrop.IDragAndDrop; import com.android.wm.shell.onehanded.IOneHanded; import com.android.wm.shell.recents.IRecentTasks; +import com.android.wm.shell.shared.IShellTransitions; import com.android.wm.shell.splitscreen.ISplitScreen; import com.android.wm.shell.startingsurface.IStartingWindow; -import com.android.wm.shell.transition.IShellTransitions; import java.io.FileDescriptor; import java.io.PrintWriter;