| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include <algorithm> | 5 #include <algorithm> |
| 6 #include <vector> | 6 #include <vector> |
| 7 | 7 |
| 8 #include "ash/accessibility_delegate.h" | 8 #include "ash/accessibility_delegate.h" |
| 9 #include "ash/ash_switches.h" | 9 #include "ash/ash_switches.h" |
| 10 #include "ash/drag_drop/drag_drop_controller.h" | 10 #include "ash/drag_drop/drag_drop_controller.h" |
| 11 #include "ash/root_window_controller.h" | 11 #include "ash/root_window_controller.h" |
| 12 #include "ash/screen_util.h" | 12 #include "ash/screen_util.h" |
| 13 #include "ash/shelf/shelf.h" | 13 #include "ash/shelf/shelf.h" |
| 14 #include "ash/shelf/shelf_widget.h" | 14 #include "ash/shelf/shelf_widget.h" |
| 15 #include "ash/shell.h" | 15 #include "ash/shell.h" |
| 16 #include "ash/shell_window_ids.h" | 16 #include "ash/shell_window_ids.h" |
| 17 #include "ash/test/ash_test_base.h" | 17 #include "ash/test/ash_test_base.h" |
| 18 #include "ash/test/display_manager_test_api.h" | 18 #include "ash/test/display_manager_test_api.h" |
| 19 #include "ash/test/shelf_test_api.h" | 19 #include "ash/test/shelf_test_api.h" |
| 20 #include "ash/test/shelf_view_test_api.h" | 20 #include "ash/test/shelf_view_test_api.h" |
| 21 #include "ash/test/shell_test_api.h" | 21 #include "ash/test/shell_test_api.h" |
| 22 #include "ash/test/test_shelf_delegate.h" | 22 #include "ash/test/test_shelf_delegate.h" |
| 23 #include "ash/wm/aura/wm_window_aura.h" | 23 #include "ash/wm/aura/wm_window_aura.h" |
| 24 #include "ash/wm/common/window_state.h" |
| 24 #include "ash/wm/common/wm_event.h" | 25 #include "ash/wm/common/wm_event.h" |
| 25 #include "ash/wm/maximize_mode/maximize_mode_controller.h" | 26 #include "ash/wm/maximize_mode/maximize_mode_controller.h" |
| 26 #include "ash/wm/mru_window_tracker.h" | 27 #include "ash/wm/mru_window_tracker.h" |
| 27 #include "ash/wm/overview/window_grid.h" | 28 #include "ash/wm/overview/window_grid.h" |
| 28 #include "ash/wm/overview/window_selector.h" | 29 #include "ash/wm/overview/window_selector.h" |
| 29 #include "ash/wm/overview/window_selector_controller.h" | 30 #include "ash/wm/overview/window_selector_controller.h" |
| 30 #include "ash/wm/overview/window_selector_item.h" | 31 #include "ash/wm/overview/window_selector_item.h" |
| 31 #include "ash/wm/panels/panel_layout_manager.h" | 32 #include "ash/wm/panels/panel_layout_manager.h" |
| 32 #include "ash/wm/window_state.h" | |
| 33 #include "ash/wm/window_state_aura.h" | 33 #include "ash/wm/window_state_aura.h" |
| 34 #include "ash/wm/window_util.h" | 34 #include "ash/wm/window_util.h" |
| 35 #include "base/command_line.h" | 35 #include "base/command_line.h" |
| 36 #include "base/compiler_specific.h" | 36 #include "base/compiler_specific.h" |
| 37 #include "base/memory/scoped_vector.h" | 37 #include "base/memory/scoped_vector.h" |
| 38 #include "base/run_loop.h" | 38 #include "base/run_loop.h" |
| 39 #include "base/strings/string_piece.h" | 39 #include "base/strings/string_piece.h" |
| 40 #include "base/strings/utf_string_conversions.h" | 40 #include "base/strings/utf_string_conversions.h" |
| 41 #include "base/test/user_action_tester.h" | 41 #include "base/test/user_action_tester.h" |
| 42 #include "base/thread_task_runner_handle.h" | 42 #include "base/thread_task_runner_handle.h" |
| (...skipping 1594 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1637 // Switch to overview mode. | 1637 // Switch to overview mode. |
| 1638 ToggleOverview(); | 1638 ToggleOverview(); |
| 1639 ASSERT_TRUE(IsSelecting()); | 1639 ASSERT_TRUE(IsSelecting()); |
| 1640 | 1640 |
| 1641 // Tap should now exit overview mode. | 1641 // Tap should now exit overview mode. |
| 1642 generator.GestureTapAt(point_in_background_page); | 1642 generator.GestureTapAt(point_in_background_page); |
| 1643 EXPECT_FALSE(IsSelecting()); | 1643 EXPECT_FALSE(IsSelecting()); |
| 1644 } | 1644 } |
| 1645 | 1645 |
| 1646 } // namespace ash | 1646 } // namespace ash |
| OLD | NEW |