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