summaryrefslogtreecommitdiff
path: root/quickstep
diff options
context:
space:
mode:
authorBenno Lin <bennolin@google.com>2022-02-15 01:49:21 +0000
committerAndroid (Google) Code Review <android-gerrit@google.com>2022-02-15 01:49:21 +0000
commit978d6468645a645fb42e300895cf59b9f6b90367 (patch)
tree41b02f52b24cedea76445743e43e7cb2a01b7306 /quickstep
parentcd191165c4c1f7684a978824445025a37ec41322 (diff)
parent7738cac4241df65685caf19af06a90d90643f1aa (diff)
downloadLauncher3-978d6468645a645fb42e300895cf59b9f6b90367.tar.gz
Merge "Implemnet methods to drag a icon to given Workspace cell"
Diffstat (limited to 'quickstep')
-rw-r--r--quickstep/src/com/android/quickstep/QuickstepTestInformationHandler.java6
1 files changed, 4 insertions, 2 deletions
diff --git a/quickstep/src/com/android/quickstep/QuickstepTestInformationHandler.java b/quickstep/src/com/android/quickstep/QuickstepTestInformationHandler.java
index ae2583b515..4c570f1d95 100644
--- a/quickstep/src/com/android/quickstep/QuickstepTestInformationHandler.java
+++ b/quickstep/src/com/android/quickstep/QuickstepTestInformationHandler.java
@@ -5,6 +5,8 @@ import android.content.Context;
import android.graphics.Rect;
import android.os.Bundle;
+import androidx.annotation.Nullable;
+
import com.android.launcher3.LauncherState;
import com.android.launcher3.testing.TestInformationHandler;
import com.android.launcher3.testing.TestProtocol;
@@ -21,7 +23,7 @@ public class QuickstepTestInformationHandler extends TestInformationHandler {
}
@Override
- public Bundle call(String method, String arg) {
+ public Bundle call(String method, String arg, @Nullable Bundle extras) {
final Bundle response = new Bundle();
switch (method) {
case TestProtocol.REQUEST_ALL_APPS_TO_OVERVIEW_SWIPE_HEIGHT: {
@@ -82,7 +84,7 @@ public class QuickstepTestInformationHandler extends TestInformationHandler {
}
}
- return super.call(method, arg);
+ return super.call(method, arg, extras);
}
@Override