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 "ash/wm/property_util.h" | 7 #include "ash/wm/property_util.h" |
8 #include "base/bind.h" | 8 #include "base/bind.h" |
9 #include "base/callback.h" | 9 #include "base/callback.h" |
10 #include "base/command_line.h" | 10 #include "base/command_line.h" |
(...skipping 21 matching lines...) Expand all Loading... |
32 #include "content/public/browser/web_contents.h" | 32 #include "content/public/browser/web_contents.h" |
33 #include "ui/gfx/screen.h" | 33 #include "ui/gfx/screen.h" |
34 #include "ui/views/view.h" | 34 #include "ui/views/view.h" |
35 #include "ui/views/widget/widget.h" | 35 #include "ui/views/widget/widget.h" |
36 | 36 |
37 #if defined(USE_ASH) | 37 #if defined(USE_ASH) |
38 #include "ash/display/display_controller.h" | 38 #include "ash/display/display_controller.h" |
39 #include "ash/display/display_manager.h" | 39 #include "ash/display/display_manager.h" |
40 #include "ash/shell.h" | 40 #include "ash/shell.h" |
41 #include "ash/test/cursor_manager_test_api.h" | 41 #include "ash/test/cursor_manager_test_api.h" |
42 #include "ash/wm/cursor_manager.h" | |
43 #include "ash/wm/window_util.h" | 42 #include "ash/wm/window_util.h" |
44 #include "ui/aura/root_window.h" | 43 #include "ui/aura/root_window.h" |
45 #include "ui/aura/test/event_generator.h" | 44 #include "ui/aura/test/event_generator.h" |
46 #endif | 45 #endif |
47 | 46 |
48 using content::WebContents; | 47 using content::WebContents; |
49 | 48 |
50 namespace test { | 49 namespace test { |
51 | 50 |
52 namespace { | 51 namespace { |
(...skipping 1350 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1403 DifferentDeviceScaleFactorDisplayTabDragControllerTest, | 1402 DifferentDeviceScaleFactorDisplayTabDragControllerTest, |
1404 ::testing::Values("mouse")); | 1403 ::testing::Values("mouse")); |
1405 INSTANTIATE_TEST_CASE_P(TabDragging, | 1404 INSTANTIATE_TEST_CASE_P(TabDragging, |
1406 DetachToBrowserTabDragControllerTest, | 1405 DetachToBrowserTabDragControllerTest, |
1407 ::testing::Values("mouse", "touch")); | 1406 ::testing::Values("mouse", "touch")); |
1408 #else | 1407 #else |
1409 INSTANTIATE_TEST_CASE_P(TabDragging, | 1408 INSTANTIATE_TEST_CASE_P(TabDragging, |
1410 DetachToBrowserTabDragControllerTest, | 1409 DetachToBrowserTabDragControllerTest, |
1411 ::testing::Values("mouse")); | 1410 ::testing::Values("mouse")); |
1412 #endif | 1411 #endif |
OLD | NEW |