| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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 "ash/display/extended_mouse_warp_controller.h" | 5 #include "ash/display/extended_mouse_warp_controller.h" |
| 6 | 6 |
| 7 #include "ash/display/display_layout_store.h" | |
| 8 #include "ash/display/display_manager.h" | 7 #include "ash/display/display_manager.h" |
| 9 #include "ash/display/mouse_cursor_event_filter.h" | 8 #include "ash/display/mouse_cursor_event_filter.h" |
| 10 #include "ash/shell.h" | 9 #include "ash/shell.h" |
| 11 #include "ash/test/ash_test_base.h" | 10 #include "ash/test/ash_test_base.h" |
| 12 #include "ash/test/display_manager_test_api.h" | 11 #include "ash/test/display_manager_test_api.h" |
| 13 #include "ui/display/display.h" | 12 #include "ui/display/display.h" |
| 14 #include "ui/display/manager/display_layout.h" | 13 #include "ui/display/manager/display_layout.h" |
| 15 #include "ui/display/manager/display_layout_builder.h" | 14 #include "ui/display/manager/display_layout_builder.h" |
| 16 #include "ui/display/screen.h" | 15 #include "ui/display/screen.h" |
| 17 #include "ui/events/test/event_generator.h" | 16 #include "ui/events/test/event_generator.h" |
| (...skipping 351 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 369 region_0->GetIndicatorBoundsForTest(display_2_id)); | 368 region_0->GetIndicatorBoundsForTest(display_2_id)); |
| 370 // between 2 and 1 | 369 // between 2 and 1 |
| 371 EXPECT_EQ(gfx::Rect(900, 499, 200, 1), | 370 EXPECT_EQ(gfx::Rect(900, 499, 200, 1), |
| 372 region_1->GetIndicatorBoundsForTest(display_1_id)); | 371 region_1->GetIndicatorBoundsForTest(display_1_id)); |
| 373 EXPECT_EQ(gfx::Rect(900, 500, 200, 1), | 372 EXPECT_EQ(gfx::Rect(900, 500, 200, 1), |
| 374 region_1->GetIndicatorBoundsForTest(display_2_id)); | 373 region_1->GetIndicatorBoundsForTest(display_2_id)); |
| 375 event_filter()->HideSharedEdgeIndicator(); | 374 event_filter()->HideSharedEdgeIndicator(); |
| 376 } | 375 } |
| 377 | 376 |
| 378 } // namespace ash | 377 } // namespace ash |
| OLD | NEW |