| 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 "ash/display/screen_position_controller.h" | 5 #include "ash/display/screen_position_controller.h" |
| 6 | 6 |
| 7 #include "ash/display/display_manager.h" | 7 #include "ash/display/display_manager.h" |
| 8 #include "ash/screen_util.h" | 8 #include "ash/screen_util.h" |
| 9 #include "ash/shell.h" | 9 #include "ash/shell.h" |
| 10 #include "ash/test/ash_test_base.h" | 10 #include "ash/test/ash_test_base.h" |
| 11 #include "ash/test/shell_test_api.h" | 11 #include "ash/test/shell_test_api.h" |
| 12 #include "ui/aura/env.h" | 12 #include "ui/aura/env.h" |
| 13 #include "ui/aura/test/test_window_delegate.h" | 13 #include "ui/aura/test/test_window_delegate.h" |
| 14 #include "ui/aura/window_event_dispatcher.h" | 14 #include "ui/aura/window_tree_host.h" |
| 15 #include "ui/base/layout.h" | 15 #include "ui/base/layout.h" |
| 16 #include "ui/gfx/screen.h" | 16 #include "ui/gfx/screen.h" |
| 17 | 17 |
| 18 #if defined(OS_WIN) | 18 #if defined(OS_WIN) |
| 19 // TODO(scottmg): RootWindow doesn't get resized immediately on Windows | 19 // TODO(scottmg): RootWindow doesn't get resized immediately on Windows |
| 20 // Ash. http://crbug.com/247916. | 20 // Ash. http://crbug.com/247916. |
| 21 #define MAYBE_ConvertHostPointToScreen DISABLED_ConvertHostPointToScreen | 21 #define MAYBE_ConvertHostPointToScreen DISABLED_ConvertHostPointToScreen |
| 22 #define MAYBE_ConvertHostPointToScreenHiDPI DISABLED_ConvertHostPointToScreenHiD
PI | 22 #define MAYBE_ConvertHostPointToScreenHiDPI DISABLED_ConvertHostPointToScreenHiD
PI |
| 23 #define MAYBE_ConvertHostPointToScreenRotate DISABLED_ConvertHostPointToScreenRo
tate | 23 #define MAYBE_ConvertHostPointToScreenRotate DISABLED_ConvertHostPointToScreenRo
tate |
| 24 #define MAYBE_ConvertHostPointToScreenUIScale DISABLED_ConvertHostPointToScreenU
IScale | 24 #define MAYBE_ConvertHostPointToScreenUIScale DISABLED_ConvertHostPointToScreenU
IScale |
| (...skipping 246 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 271 EXPECT_EQ("210,70", ConvertHostPointToScreen(60, 70)); | 271 EXPECT_EQ("210,70", ConvertHostPointToScreen(60, 70)); |
| 272 // The point is out of the host windows. | 272 // The point is out of the host windows. |
| 273 EXPECT_EQ("210,-50", ConvertHostPointToScreen(60, -50)); | 273 EXPECT_EQ("210,-50", ConvertHostPointToScreen(60, -50)); |
| 274 // The point is on the 2nd host. Point on 1nd host (60, 60) | 274 // The point is on the 2nd host. Point on 1nd host (60, 60) |
| 275 // 1/2 * 1.5 = (45,45) | 275 // 1/2 * 1.5 = (45,45) |
| 276 EXPECT_EQ("45,45", ConvertHostPointToScreen(60, -340)); | 276 EXPECT_EQ("45,45", ConvertHostPointToScreen(60, -340)); |
| 277 } | 277 } |
| 278 | 278 |
| 279 } // namespace test | 279 } // namespace test |
| 280 } // namespace ash | 280 } // namespace ash |
| OLD | NEW |