| Index: ash/wm/overview/window_selector_unittest.cc
|
| diff --git a/ash/wm/overview/window_selector_unittest.cc b/ash/wm/overview/window_selector_unittest.cc
|
| index 16b7e4a2ab5b2c262f82b21c26393df10eb7108a..6cd09477790b162983e1456b3eacc316e8c4bf69 100644
|
| --- a/ash/wm/overview/window_selector_unittest.cc
|
| +++ b/ash/wm/overview/window_selector_unittest.cc
|
| @@ -1107,9 +1107,6 @@ TEST_F(WindowSelectorTest, MinimizeUnminimizei) {
|
| // Tests that clicking on the close button on a secondary display effectively
|
| // closes the window.
|
| TEST_F(WindowSelectorTest, CloseButtonOnMultipleDisplay) {
|
| - if (!SupportsMultipleDisplays())
|
| - return;
|
| -
|
| UpdateDisplay("600x400,600x400");
|
| aura::Window::Windows root_windows = Shell::GetAllRootWindows();
|
|
|
| @@ -1434,9 +1431,6 @@ TEST_F(WindowSelectorTest, ClickModalWindowParent) {
|
| // Tests that windows remain on the display they are currently on in overview
|
| // mode, and that the close buttons are on matching displays.
|
| TEST_F(WindowSelectorTest, MultipleDisplays) {
|
| - if (!SupportsMultipleDisplays())
|
| - return;
|
| -
|
| UpdateDisplay("600x400,600x400");
|
| aura::Window::Windows root_windows = Shell::GetAllRootWindows();
|
| gfx::Rect bounds1(0, 0, 400, 400);
|
| @@ -1511,9 +1505,6 @@ TEST_F(WindowSelectorTest, Shutdown) {
|
|
|
| // Tests removing a display during overview.
|
| TEST_F(WindowSelectorTest, RemoveDisplay) {
|
| - if (!SupportsMultipleDisplays())
|
| - return;
|
| -
|
| UpdateDisplay("400x400,400x400");
|
| gfx::Rect bounds1(0, 0, 100, 100);
|
| gfx::Rect bounds2(450, 0, 100, 100);
|
| @@ -1694,9 +1685,6 @@ TEST_F(WindowSelectorTest, BasicArrowKeyNavigation) {
|
|
|
| // Tests basic selection across multiple monitors.
|
| TEST_F(WindowSelectorTest, BasicMultiMonitorArrowKeyNavigation) {
|
| - if (!SupportsMultipleDisplays())
|
| - return;
|
| -
|
| UpdateDisplay("400x400,400x400");
|
| gfx::Rect bounds1(0, 0, 100, 100);
|
| gfx::Rect bounds2(450, 0, 100, 100);
|
| @@ -1728,9 +1716,6 @@ TEST_F(WindowSelectorTest, BasicMultiMonitorArrowKeyNavigation) {
|
| // Tests first monitor when display order doesn't match left to right screen
|
| // positions.
|
| TEST_F(WindowSelectorTest, MultiMonitorReversedOrder) {
|
| - if (!SupportsMultipleDisplays())
|
| - return;
|
| -
|
| UpdateDisplay("400x400,400x400");
|
| Shell::GetInstance()->display_manager()->SetLayoutForCurrentDisplays(
|
| display::test::CreateDisplayLayout(display_manager(),
|
| @@ -1761,9 +1746,6 @@ TEST_F(WindowSelectorTest, MultiMonitorReversedOrder) {
|
|
|
| // Tests three monitors where the grid becomes empty on one of the monitors.
|
| TEST_F(WindowSelectorTest, ThreeMonitor) {
|
| - if (!SupportsMultipleDisplays())
|
| - return;
|
| -
|
| UpdateDisplay("400x400,400x400,400x400");
|
| aura::Window::Windows root_windows = Shell::GetAllRootWindows();
|
| gfx::Rect bounds1(0, 0, 100, 100);
|
|
|