| 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 "ash/wm/toplevel_layout_manager.h" | 5 #include "ash/wm/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" |
| 11 #include "ui/aura/screen_aura.h" | 11 #include "ui/aura/screen_aura.h" |
| 12 #include "ui/aura/test/aura_test_base.h" | 12 #include "ui/aura/test/aura_test_base.h" |
| 13 #include "ui/base/ui_base_types.h" | 13 #include "ui/base/ui_base_types.h" |
| 14 #include "ui/aura/window.h" | 14 #include "ui/aura/window.h" |
| 15 | 15 |
| 16 namespace aura_shell { | 16 namespace ash { |
| 17 | 17 |
| 18 namespace { | 18 namespace { |
| 19 | 19 |
| 20 class ToplevelLayoutManagerTest : public aura::test::AuraTestBase { | 20 class ToplevelLayoutManagerTest : public aura::test::AuraTestBase { |
| 21 public: | 21 public: |
| 22 ToplevelLayoutManagerTest() : layout_manager_(NULL) {} | 22 ToplevelLayoutManagerTest() : layout_manager_(NULL) {} |
| 23 virtual ~ToplevelLayoutManagerTest() {} | 23 virtual ~ToplevelLayoutManagerTest() {} |
| 24 | 24 |
| 25 virtual void SetUp() OVERRIDE { | 25 virtual void SetUp() OVERRIDE { |
| 26 aura::test::AuraTestBase::SetUp(); | 26 aura::test::AuraTestBase::SetUp(); |
| (...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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::client::kShowStateKey, | 72 window->SetIntProperty(aura::client::kShowStateKey, |
| 73 ui::SHOW_STATE_FULLSCREEN); | 73 ui::SHOW_STATE_FULLSCREEN); |
| 74 EXPECT_EQ(gfx::Screen::GetMonitorAreaNearestWindow(window.get()), | 74 EXPECT_EQ(gfx::Screen::GetMonitorAreaNearestWindow(window.get()), |
| 75 window->bounds()); | 75 window->bounds()); |
| 76 window->SetIntProperty(aura::client::kShowStateKey, ui::SHOW_STATE_NORMAL); | 76 window->SetIntProperty(aura::client::kShowStateKey, ui::SHOW_STATE_NORMAL); |
| 77 EXPECT_EQ(bounds, window->bounds()); | 77 EXPECT_EQ(bounds, window->bounds()); |
| 78 } | 78 } |
| 79 | 79 |
| 80 } // namespace aura_shell | 80 } // namespace ash |
| OLD | NEW |