summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSunny Goyal <sunnygoyal@google.com>2019-02-26 09:43:41 -0800
committerSunny Goyal <sunnygoyal@google.com>2019-02-26 09:43:50 -0800
commitb04dabf7efe49a69b3663734840cf772fd106804 (patch)
tree6f7e441c51313050b306fdd5b40cc8b276705d15
parentcf50c1b01d6fc3d4622098129206351f813d82b8 (diff)
downloadandroid_packages_apps_Trebuchet-b04dabf7efe49a69b3663734840cf772fd106804.tar.gz
android_packages_apps_Trebuchet-b04dabf7efe49a69b3663734840cf772fd106804.tar.bz2
android_packages_apps_Trebuchet-b04dabf7efe49a69b3663734840cf772fd106804.zip
Fixing Launcher3QuickStepGoIconRecents build
Change-Id: Ieef3872fbe0ba3e6412fe6fcbfc4e20ac785ab70
-rw-r--r--go/quickstep/src/com/android/quickstep/FallbackActivityControllerHelper.java6
1 files changed, 2 insertions, 4 deletions
diff --git a/go/quickstep/src/com/android/quickstep/FallbackActivityControllerHelper.java b/go/quickstep/src/com/android/quickstep/FallbackActivityControllerHelper.java
index 9a18b4501..abb924224 100644
--- a/go/quickstep/src/com/android/quickstep/FallbackActivityControllerHelper.java
+++ b/go/quickstep/src/com/android/quickstep/FallbackActivityControllerHelper.java
@@ -20,7 +20,6 @@ import static com.android.quickstep.views.IconRecentsView.CONTENT_ALPHA;
import android.animation.AnimatorSet;
import android.animation.ObjectAnimator;
-import android.content.ComponentName;
import android.graphics.Rect;
import androidx.annotation.Nullable;
@@ -30,7 +29,6 @@ import com.android.launcher3.userevent.nano.LauncherLogProto;
import com.android.launcher3.util.MultiValueAlpha.AlphaProperty;
import com.android.quickstep.util.RemoteAnimationTargetSet;
import com.android.quickstep.views.IconRecentsView;
-import com.android.quickstep.views.RecentsView;
import java.util.function.BiPredicate;
import java.util.function.Consumer;
@@ -43,7 +41,7 @@ import java.util.function.Consumer;
public final class FallbackActivityControllerHelper extends
GoActivityControlHelper<RecentsActivity> {
- public FallbackActivityControllerHelper(ComponentName homeComponent) { }
+ public FallbackActivityControllerHelper() { }
@Override
public AnimationFactory prepareRecentsUI(RecentsActivity activity, boolean activityVisible,
@@ -98,7 +96,7 @@ public final class FallbackActivityControllerHelper extends
@Nullable
@Override
- public RecentsView getVisibleRecentsView() {
+ public IconRecentsView getVisibleRecentsView() {
RecentsActivity activity = getCreatedActivity();
if (activity != null && activity.hasWindowFocus()) {
return activity.getOverviewPanel();