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> |
| 8 |
7 #include <algorithm> | 9 #include <algorithm> |
8 | 10 |
9 #include "ash/wm/window_state.h" | 11 #include "ash/wm/window_state.h" |
10 #include "base/bind.h" | 12 #include "base/bind.h" |
11 #include "base/callback.h" | 13 #include "base/callback.h" |
12 #include "base/command_line.h" | 14 #include "base/command_line.h" |
| 15 #include "base/macros.h" |
13 #include "base/run_loop.h" | 16 #include "base/run_loop.h" |
14 #include "base/strings/string_number_conversions.h" | 17 #include "base/strings/string_number_conversions.h" |
| 18 #include "build/build_config.h" |
15 #include "chrome/browser/chrome_notification_types.h" | 19 #include "chrome/browser/chrome_notification_types.h" |
16 #include "chrome/browser/ui/browser.h" | 20 #include "chrome/browser/ui/browser.h" |
17 #include "chrome/browser/ui/browser_commands.h" | 21 #include "chrome/browser/ui/browser_commands.h" |
18 #include "chrome/browser/ui/browser_iterator.h" | 22 #include "chrome/browser/ui/browser_iterator.h" |
19 #include "chrome/browser/ui/browser_list.h" | 23 #include "chrome/browser/ui/browser_list.h" |
20 #include "chrome/browser/ui/browser_tabstrip.h" | 24 #include "chrome/browser/ui/browser_tabstrip.h" |
21 #include "chrome/browser/ui/host_desktop.h" | 25 #include "chrome/browser/ui/host_desktop.h" |
22 #include "chrome/browser/ui/tabs/tab_strip_model.h" | 26 #include "chrome/browser/ui/tabs/tab_strip_model.h" |
23 #include "chrome/browser/ui/views/frame/browser_view.h" | 27 #include "chrome/browser/ui/views/frame/browser_view.h" |
24 #include "chrome/browser/ui/views/frame/native_browser_frame_factory.h" | 28 #include "chrome/browser/ui/views/frame/native_browser_frame_factory.h" |
(...skipping 2328 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2353 DetachToBrowserTabDragControllerTest, | 2357 DetachToBrowserTabDragControllerTest, |
2354 ::testing::Values("mouse", "touch")); | 2358 ::testing::Values("mouse", "touch")); |
2355 INSTANTIATE_TEST_CASE_P(TabDragging, | 2359 INSTANTIATE_TEST_CASE_P(TabDragging, |
2356 DetachToBrowserTabDragControllerTestTouch, | 2360 DetachToBrowserTabDragControllerTestTouch, |
2357 ::testing::Values("touch")); | 2361 ::testing::Values("touch")); |
2358 #elif defined(USE_ASH) | 2362 #elif defined(USE_ASH) |
2359 INSTANTIATE_TEST_CASE_P(TabDragging, | 2363 INSTANTIATE_TEST_CASE_P(TabDragging, |
2360 DetachToBrowserTabDragControllerTest, | 2364 DetachToBrowserTabDragControllerTest, |
2361 ::testing::Values("mouse")); | 2365 ::testing::Values("mouse")); |
2362 #endif | 2366 #endif |
OLD | NEW |