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 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
48 #include "ui/aura/test/test_windows.h" | 48 #include "ui/aura/test/test_windows.h" |
49 #include "ui/aura/window_targeter.h" | 49 #include "ui/aura/window_targeter.h" |
50 #endif | 50 #endif |
51 | 51 |
52 #if defined(USE_AURA) && !defined(OS_CHROMEOS) | 52 #if defined(USE_AURA) && !defined(OS_CHROMEOS) |
53 #include "chrome/browser/ui/views/frame/desktop_browser_frame_aura.h" | 53 #include "chrome/browser/ui/views/frame/desktop_browser_frame_aura.h" |
54 #include "ui/views/widget/desktop_aura/desktop_native_widget_aura.h" | 54 #include "ui/views/widget/desktop_aura/desktop_native_widget_aura.h" |
55 #endif | 55 #endif |
56 | 56 |
57 #if defined(USE_ASH) | 57 #if defined(USE_ASH) |
| 58 #include "ash/common/wm/root_window_finder.h" |
| 59 #include "ash/common/wm/window_state.h" |
58 #include "ash/display/display_manager.h" | 60 #include "ash/display/display_manager.h" |
59 #include "ash/shell.h" | 61 #include "ash/shell.h" |
60 #include "ash/test/cursor_manager_test_api.h" | 62 #include "ash/test/cursor_manager_test_api.h" |
61 #include "ash/wm/aura/wm_window_aura.h" | 63 #include "ash/wm/aura/wm_window_aura.h" |
62 #include "ash/wm/common/root_window_finder.h" | |
63 #include "ash/wm/common/window_state.h" | |
64 #include "ash/wm/window_state_aura.h" | 64 #include "ash/wm/window_state_aura.h" |
65 #include "ash/wm/window_util.h" | 65 #include "ash/wm/window_util.h" |
66 #include "chrome/browser/ui/views/frame/immersive_mode_controller.h" | 66 #include "chrome/browser/ui/views/frame/immersive_mode_controller.h" |
67 #include "ui/aura/client/screen_position_client.h" | 67 #include "ui/aura/client/screen_position_client.h" |
68 #include "ui/aura/test/event_generator_delegate_aura.h" | 68 #include "ui/aura/test/event_generator_delegate_aura.h" |
69 #include "ui/aura/window_event_dispatcher.h" | 69 #include "ui/aura/window_event_dispatcher.h" |
70 #include "ui/events/test/event_generator.h" | 70 #include "ui/events/test/event_generator.h" |
71 #endif | 71 #endif |
72 | 72 |
73 using content::WebContents; | 73 using content::WebContents; |
(...skipping 2399 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2473 DetachToBrowserTabDragControllerTest, | 2473 DetachToBrowserTabDragControllerTest, |
2474 ::testing::Values("mouse", "touch")); | 2474 ::testing::Values("mouse", "touch")); |
2475 INSTANTIATE_TEST_CASE_P(TabDragging, | 2475 INSTANTIATE_TEST_CASE_P(TabDragging, |
2476 DetachToBrowserTabDragControllerTestTouch, | 2476 DetachToBrowserTabDragControllerTestTouch, |
2477 ::testing::Values("touch")); | 2477 ::testing::Values("touch")); |
2478 #else | 2478 #else |
2479 INSTANTIATE_TEST_CASE_P(TabDragging, | 2479 INSTANTIATE_TEST_CASE_P(TabDragging, |
2480 DetachToBrowserTabDragControllerTest, | 2480 DetachToBrowserTabDragControllerTest, |
2481 ::testing::Values("mouse")); | 2481 ::testing::Values("mouse")); |
2482 #endif | 2482 #endif |
OLD | NEW |