Revert "Move binder call to bg thread"

This reverts commit de97cfd064.

Reason for revert: CtsWindowManagerDeviceTestCases

Change-Id: I57a397d3830505a5004fe647ccbd95ac5f0168e9
This commit is contained in:
Bidhya Sharma
2022-07-07 00:27:31 +00:00
parent de97cfd064
commit 552d097ff4
2 changed files with 2 additions and 10 deletions

View File

@@ -625,7 +625,6 @@ public class NavigationBar extends ViewController<NavigationBarView> implements
}
}, mainExecutor, bgExecutor);
mView.setBackgroundExecutor(bgExecutor);
mView.setEdgeBackGestureHandler(mEdgeBackGestureHandler);
mNavBarMode = mNavigationModeController.addListener(mModeChangedListener);
}

View File

@@ -88,7 +88,6 @@ import com.android.wm.shell.pip.Pip;
import java.io.PrintWriter;
import java.util.Map;
import java.util.Optional;
import java.util.concurrent.Executor;
import java.util.function.Consumer;
/** */
@@ -98,8 +97,6 @@ public class NavigationBarView extends FrameLayout {
final static boolean ALTERNATE_CAR_MODE_UI = false;
private Executor mBgExecutor;
// The current view is one of mHorizontal or mVertical depending on the current configuration
View mCurrentView = null;
private View mVertical;
@@ -352,10 +349,6 @@ public class NavigationBarView extends FrameLayout {
notifyVerticalChangedListener(mIsVertical);
}
public void setBackgroundExecutor(Executor bgExecutor) {
mBgExecutor = bgExecutor;
}
public void setTouchHandler(Gefingerpoken touchHandler) {
mTouchHandler = touchHandler;
}
@@ -775,8 +768,8 @@ public class NavigationBarView extends FrameLayout {
updateSlippery();
reloadNavIcons();
updateNavButtonIcons();
mBgExecutor.execute(() -> WindowManagerWrapper.getInstance()
.setNavBarVirtualKeyHapticFeedbackEnabled(!mShowSwipeUpUi));
WindowManagerWrapper.getInstance().setNavBarVirtualKeyHapticFeedbackEnabled(
!mShowSwipeUpUi);
getHomeButton().setAccessibilityDelegate(
mShowSwipeUpUi ? mQuickStepAccessibilityDelegate : null);
}