OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 "chrome/browser/ui/views/tabs/tab_drag_controller_interactive_uitest.h" | 5 #include "chrome/browser/ui/views/tabs/tab_drag_controller_interactive_uitest.h" |
6 | 6 |
7 #include <stddef.h> | 7 #include <stddef.h> |
8 | 8 |
9 #include <algorithm> | 9 #include <algorithm> |
10 | 10 |
(...skipping 45 matching lines...) Loading... |
56 #include "ui/aura/window_targeter.h" | 56 #include "ui/aura/window_targeter.h" |
57 #endif | 57 #endif |
58 | 58 |
59 #if defined(USE_AURA) && !defined(OS_CHROMEOS) | 59 #if defined(USE_AURA) && !defined(OS_CHROMEOS) |
60 #include "chrome/browser/ui/views/frame/desktop_browser_frame_aura.h" | 60 #include "chrome/browser/ui/views/frame/desktop_browser_frame_aura.h" |
61 #include "ui/views/widget/desktop_aura/desktop_native_widget_aura.h" | 61 #include "ui/views/widget/desktop_aura/desktop_native_widget_aura.h" |
62 #endif | 62 #endif |
63 | 63 |
64 #if defined(USE_ASH) | 64 #if defined(USE_ASH) |
65 #include "ash/common/ash_switches.h" | 65 #include "ash/common/ash_switches.h" |
66 #include "ash/common/wm/root_window_finder.h" | |
67 #include "ash/common/wm/window_state.h" | |
68 #include "ash/common/wm_window.h" | 66 #include "ash/common/wm_window.h" |
69 #include "ash/shell.h" | 67 #include "ash/shell.h" |
70 #include "ash/test/cursor_manager_test_api.h" | 68 #include "ash/test/cursor_manager_test_api.h" |
71 #include "ash/test/immersive_fullscreen_controller_test_api.h" | 69 #include "ash/test/immersive_fullscreen_controller_test_api.h" |
| 70 #include "ash/wm/root_window_finder.h" |
| 71 #include "ash/wm/window_state.h" |
72 #include "ash/wm/window_state_aura.h" | 72 #include "ash/wm/window_state_aura.h" |
73 #include "ash/wm/window_util.h" | 73 #include "ash/wm/window_util.h" |
74 #include "chrome/browser/ui/views/frame/immersive_mode_controller.h" | 74 #include "chrome/browser/ui/views/frame/immersive_mode_controller.h" |
75 #include "chrome/browser/ui/views/frame/immersive_mode_controller_ash.h" | 75 #include "chrome/browser/ui/views/frame/immersive_mode_controller_ash.h" |
76 #include "ui/aura/client/screen_position_client.h" | 76 #include "ui/aura/client/screen_position_client.h" |
77 #include "ui/aura/test/event_generator_delegate_aura.h" | 77 #include "ui/aura/test/event_generator_delegate_aura.h" |
78 #include "ui/aura/window_event_dispatcher.h" | 78 #include "ui/aura/window_event_dispatcher.h" |
79 #include "ui/display/manager/display_manager.h" | 79 #include "ui/display/manager/display_manager.h" |
80 #include "ui/events/test/event_generator.h" | 80 #include "ui/events/test/event_generator.h" |
81 #endif | 81 #endif |
(...skipping 2468 matching lines...) Loading... |
2550 DetachToBrowserTabDragControllerTest, | 2550 DetachToBrowserTabDragControllerTest, |
2551 ::testing::Values("mouse", "touch")); | 2551 ::testing::Values("mouse", "touch")); |
2552 INSTANTIATE_TEST_CASE_P(TabDragging, | 2552 INSTANTIATE_TEST_CASE_P(TabDragging, |
2553 DetachToBrowserTabDragControllerTestTouch, | 2553 DetachToBrowserTabDragControllerTestTouch, |
2554 ::testing::Values("touch")); | 2554 ::testing::Values("touch")); |
2555 #else | 2555 #else |
2556 INSTANTIATE_TEST_CASE_P(TabDragging, | 2556 INSTANTIATE_TEST_CASE_P(TabDragging, |
2557 DetachToBrowserTabDragControllerTest, | 2557 DetachToBrowserTabDragControllerTest, |
2558 ::testing::Values("mouse")); | 2558 ::testing::Values("mouse")); |
2559 #endif | 2559 #endif |
OLD | NEW |