Merge "Removing support for menu button from NavBar" into qt-dev

This commit is contained in:
TreeHugger Robot
2019-05-02 18:35:40 +00:00
committed by Android (Google) Code Review
6 changed files with 4 additions and 113 deletions

View File

@@ -127,20 +127,6 @@ public class CommandQueueTest extends SysuiTestCase {
eq(null), eq(r), eq(false));
}
@Test
public void testTopAppWindowChanged() {
mCommandQueue.topAppWindowChanged(DEFAULT_DISPLAY, true);
waitForIdleSync();
verify(mCallbacks).topAppWindowChanged(eq(DEFAULT_DISPLAY), eq(true));
}
@Test
public void testTopAppWindowChangedForSecondaryDisplay() {
mCommandQueue.topAppWindowChanged(SECONDARY_DISPLAY, true);
waitForIdleSync();
verify(mCallbacks).topAppWindowChanged(eq(SECONDARY_DISPLAY), eq(true));
}
@Test
public void testShowImeButton() {
mCommandQueue.setImeWindowStatus(DEFAULT_DISPLAY, null, 1, 2, true);