diff --git a/quickstep/src/com/android/launcher3/uioverrides/touchcontrollers/PortraitStatesTouchController.java b/quickstep/src/com/android/launcher3/uioverrides/touchcontrollers/PortraitStatesTouchController.java index c60e257105..facfb9ddd8 100644 --- a/quickstep/src/com/android/launcher3/uioverrides/touchcontrollers/PortraitStatesTouchController.java +++ b/quickstep/src/com/android/launcher3/uioverrides/touchcontrollers/PortraitStatesTouchController.java @@ -126,26 +126,11 @@ public class PortraitStatesTouchController extends AbstractStateChangeTouchContr @Override protected LauncherState getTargetState(LauncherState fromState, boolean isDragTowardPositive) { - if (TestProtocol.sDebugTracing) { - Log.d(TestProtocol.OVERIEW_NOT_ALLAPPS, "PortraitStatesTouchController.getTargetState"); - } if (fromState == ALL_APPS && !isDragTowardPositive) { - if (TestProtocol.sDebugTracing) { - Log.d(TestProtocol.OVERIEW_NOT_ALLAPPS, - "PortraitStatesTouchController.getTargetState 1"); - } return NORMAL; } else if (fromState == OVERVIEW) { - if (TestProtocol.sDebugTracing) { - Log.d(TestProtocol.OVERIEW_NOT_ALLAPPS, - "PortraitStatesTouchController.getTargetState 2"); - } return isDragTowardPositive ? OVERVIEW : NORMAL; } else if (fromState == NORMAL && isDragTowardPositive) { - if (TestProtocol.sDebugTracing) { - Log.d(TestProtocol.OVERIEW_NOT_ALLAPPS, - "PortraitStatesTouchController.getTargetState 3"); - } return ALL_APPS; } return fromState; diff --git a/quickstep/src/com/android/quickstep/LauncherActivityInterface.java b/quickstep/src/com/android/quickstep/LauncherActivityInterface.java index 8b0d782913..3f3e5ada68 100644 --- a/quickstep/src/com/android/quickstep/LauncherActivityInterface.java +++ b/quickstep/src/com/android/quickstep/LauncherActivityInterface.java @@ -187,9 +187,6 @@ public final class LauncherActivityInterface extends @Override public boolean switchToRecentsIfVisible(Runnable onCompleteCallback) { - if (TestProtocol.sDebugTracing) { - Log.d(TestProtocol.OVERIEW_NOT_ALLAPPS, "switchToRecentsIfVisible"); - } Launcher launcher = getVisibleLauncher(); if (launcher == null) { return false; diff --git a/src/com/android/launcher3/statemanager/StateManager.java b/src/com/android/launcher3/statemanager/StateManager.java index beb5b684f9..a18f34062a 100644 --- a/src/com/android/launcher3/statemanager/StateManager.java +++ b/src/com/android/launcher3/statemanager/StateManager.java @@ -302,10 +302,6 @@ public class StateManager> { } private PendingAnimation createAnimationToNewWorkspaceInternal(final STATE_TYPE state) { - if (TestProtocol.sDebugTracing) { - Log.d(TestProtocol.OVERIEW_NOT_ALLAPPS, "createAnimationToNewWorkspaceInternal: " - + state); - } PendingAnimation builder = new PendingAnimation(mConfig.duration); if (mConfig.getAnimComponents() != 0) { for (StateHandler handler : getStateHandlers()) { @@ -328,9 +324,6 @@ public class StateManager> { @Override public void onAnimationSuccess(Animator animator) { - if (TestProtocol.sDebugTracing) { - Log.d(TestProtocol.OVERIEW_NOT_ALLAPPS, "onAnimationSuccess: " + state); - } onStateTransitionEnd(state); } }; diff --git a/src/com/android/launcher3/testing/TestProtocol.java b/src/com/android/launcher3/testing/TestProtocol.java index 72bbc43dbe..0117311261 100644 --- a/src/com/android/launcher3/testing/TestProtocol.java +++ b/src/com/android/launcher3/testing/TestProtocol.java @@ -103,7 +103,6 @@ public final class TestProtocol { public static final String REQUEST_MOCK_SENSOR_ROTATION = "mock-sensor-rotation"; public static final String PERMANENT_DIAG_TAG = "TaplTarget"; - public static final String OVERIEW_NOT_ALLAPPS = "b/156095088"; public static final String NO_SWIPE_TO_HOME = "b/158017601"; public static final String WORK_PROFILE_REMOVED = "b/159671700"; public static final String TIS_NO_EVENTS = "b/180915942"; diff --git a/src/com/android/launcher3/touch/AbstractStateChangeTouchController.java b/src/com/android/launcher3/touch/AbstractStateChangeTouchController.java index b28d6f7b8f..6f1b2f967f 100644 --- a/src/com/android/launcher3/touch/AbstractStateChangeTouchController.java +++ b/src/com/android/launcher3/touch/AbstractStateChangeTouchController.java @@ -202,10 +202,6 @@ public abstract class AbstractStateChangeTouchController mFromState = newFromState; mToState = newToState; - if (TestProtocol.sDebugTracing) { - Log.d(TestProtocol.OVERIEW_NOT_ALLAPPS, "reinitCurrentAnimation: " - + newToState.ordinal + " " + getClass().getSimpleName()); - } mStartProgress = 0; mPassedOverviewAtomicThreshold = false;