| 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 <algorithm> | 5 #include <algorithm> |
| 6 #include <vector> | 6 #include <vector> |
| 7 | 7 |
| 8 #include "ash/launcher/launcher.h" | 8 #include "ash/launcher/launcher.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 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 56 EXPECT_EQ("0,0 2000x1800", display_2x.bounds_in_pixel().ToString()); | 56 EXPECT_EQ("0,0 2000x1800", display_2x.bounds_in_pixel().ToString()); |
| 57 | 57 |
| 58 // Aura and views coordinates are in DIP, so they their bounds do not change. | 58 // Aura and views coordinates are in DIP, so they their bounds do not change. |
| 59 EXPECT_EQ("0,0 1000x900", display_2x.bounds().ToString()); | 59 EXPECT_EQ("0,0 1000x900", display_2x.bounds().ToString()); |
| 60 work_area = display_2x.work_area(); | 60 work_area = display_2x.work_area(); |
| 61 EXPECT_EQ("0,0 1000x852", work_area.ToString()); | 61 EXPECT_EQ("0,0 1000x852", work_area.ToString()); |
| 62 EXPECT_EQ("0,0,48,0", display_2x.bounds().InsetsFrom(work_area).ToString()); | 62 EXPECT_EQ("0,0,48,0", display_2x.bounds().InsetsFrom(work_area).ToString()); |
| 63 | 63 |
| 64 // Sanity check if the workarea's inset hight is same as | 64 // Sanity check if the workarea's inset hight is same as |
| 65 // the launcher's height. | 65 // the launcher's height. |
| 66 Launcher* launcher = Shell::GetInstance()->launcher(); | 66 Launcher* launcher = Launcher::ForPrimaryDisplay(); |
| 67 EXPECT_EQ( | 67 EXPECT_EQ( |
| 68 display_2x.bounds().InsetsFrom(work_area).height(), | 68 display_2x.bounds().InsetsFrom(work_area).height(), |
| 69 launcher->widget()->GetNativeView()->layer()->bounds().height()); | 69 launcher->widget()->GetNativeView()->layer()->bounds().height()); |
| 70 } | 70 } |
| 71 | 71 |
| 72 } // namespace ash | 72 } // namespace ash |
| OLD | NEW |