| 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" |
| (...skipping 23 matching lines...) Expand all Loading... |
| 34 | 34 |
| 35 namespace { | 35 namespace { |
| 36 void SetSecondaryDisplayLayout(DisplayLayout::Position position) { | 36 void SetSecondaryDisplayLayout(DisplayLayout::Position position) { |
| 37 DisplayLayout layout = | 37 DisplayLayout layout = |
| 38 Shell::GetInstance()->display_manager()->GetCurrentDisplayLayout(); | 38 Shell::GetInstance()->display_manager()->GetCurrentDisplayLayout(); |
| 39 layout.position = position; | 39 layout.position = position; |
| 40 Shell::GetInstance()->display_manager()-> | 40 Shell::GetInstance()->display_manager()-> |
| 41 SetLayoutForCurrentDisplays(layout); | 41 SetLayoutForCurrentDisplays(layout); |
| 42 } | 42 } |
| 43 | 43 |
| 44 internal::ScreenPositionController* GetScreenPositionController() { | 44 ScreenPositionController* GetScreenPositionController() { |
| 45 ShellTestApi test_api(Shell::GetInstance()); | 45 ShellTestApi test_api(Shell::GetInstance()); |
| 46 return test_api.screen_position_controller(); | 46 return test_api.screen_position_controller(); |
| 47 } | 47 } |
| 48 | 48 |
| 49 class ScreenPositionControllerTest : public test::AshTestBase { | 49 class ScreenPositionControllerTest : public test::AshTestBase { |
| 50 public: | 50 public: |
| 51 ScreenPositionControllerTest() {} | 51 ScreenPositionControllerTest() {} |
| 52 virtual ~ScreenPositionControllerTest() {} | 52 virtual ~ScreenPositionControllerTest() {} |
| 53 | 53 |
| 54 virtual void SetUp() OVERRIDE { | 54 virtual void SetUp() OVERRIDE { |
| (...skipping 216 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 |