OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 "ui/aura_shell/toplevel_layout_manager.h" | 5 #include "ui/aura_shell/toplevel_layout_manager.h" |
6 | 6 |
7 #include "base/basictypes.h" | 7 #include "base/basictypes.h" |
8 #include "base/compiler_specific.h" | 8 #include "base/compiler_specific.h" |
9 #include "ui/aura/client/aura_constants.h" | 9 #include "ui/aura/client/aura_constants.h" |
10 #include "ui/aura/root_window.h" | 10 #include "ui/aura/root_window.h" |
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
51 | 51 |
52 DISALLOW_COPY_AND_ASSIGN(ToplevelLayoutManagerTest); | 52 DISALLOW_COPY_AND_ASSIGN(ToplevelLayoutManagerTest); |
53 }; | 53 }; |
54 | 54 |
55 } // namespace | 55 } // namespace |
56 | 56 |
57 // Tests normal->maximize->normal. | 57 // Tests normal->maximize->normal. |
58 TEST_F(ToplevelLayoutManagerTest, Maximize) { | 58 TEST_F(ToplevelLayoutManagerTest, Maximize) { |
59 gfx::Rect bounds(100, 100, 200, 200); | 59 gfx::Rect bounds(100, 100, 200, 200); |
60 scoped_ptr<aura::Window> window(CreateTestWindow(bounds)); | 60 scoped_ptr<aura::Window> window(CreateTestWindow(bounds)); |
61 window->SetIntProperty(aura::kShowStateKey, ui::SHOW_STATE_MAXIMIZED); | 61 window->SetIntProperty(aura::client::kShowStateKey, ui::SHOW_STATE_MAXIMIZED); |
62 EXPECT_EQ(gfx::Screen::GetMonitorWorkAreaNearestWindow(window.get()), | 62 EXPECT_EQ(gfx::Screen::GetMonitorWorkAreaNearestWindow(window.get()), |
63 window->bounds()); | 63 window->bounds()); |
64 window->SetIntProperty(aura::kShowStateKey, ui::SHOW_STATE_NORMAL); | 64 window->SetIntProperty(aura::client::kShowStateKey, ui::SHOW_STATE_NORMAL); |
65 EXPECT_EQ(bounds, window->bounds()); | 65 EXPECT_EQ(bounds, window->bounds()); |
66 } | 66 } |
67 | 67 |
68 // Tests normal->fullscreen->normal. | 68 // Tests normal->fullscreen->normal. |
69 TEST_F(ToplevelLayoutManagerTest, Fullscreen) { | 69 TEST_F(ToplevelLayoutManagerTest, Fullscreen) { |
70 gfx::Rect bounds(100, 100, 200, 200); | 70 gfx::Rect bounds(100, 100, 200, 200); |
71 scoped_ptr<aura::Window> window(CreateTestWindow(bounds)); | 71 scoped_ptr<aura::Window> window(CreateTestWindow(bounds)); |
72 window->SetIntProperty(aura::kShowStateKey, ui::SHOW_STATE_FULLSCREEN); | 72 window->SetIntProperty(aura::client::kShowStateKey, |
| 73 ui::SHOW_STATE_FULLSCREEN); |
73 EXPECT_EQ(gfx::Screen::GetMonitorAreaNearestWindow(window.get()), | 74 EXPECT_EQ(gfx::Screen::GetMonitorAreaNearestWindow(window.get()), |
74 window->bounds()); | 75 window->bounds()); |
75 window->SetIntProperty(aura::kShowStateKey, ui::SHOW_STATE_NORMAL); | 76 window->SetIntProperty(aura::client::kShowStateKey, ui::SHOW_STATE_NORMAL); |
76 EXPECT_EQ(bounds, window->bounds()); | 77 EXPECT_EQ(bounds, window->bounds()); |
77 } | 78 } |
78 | 79 |
79 } // namespace aura_shell | 80 } // namespace aura_shell |
OLD | NEW |