| 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/desktop.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 aura_shell { |
| 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(); |
| 27 aura::Desktop::GetInstance()->screen()->set_work_area_insets( | 27 aura::RootWindow::GetInstance()->screen()->set_work_area_insets( |
| 28 gfx::Insets(1, 2, 3, 4)); | 28 gfx::Insets(1, 2, 3, 4)); |
| 29 aura::Desktop::GetInstance()->SetHostSize(gfx::Size(500, 400)); | 29 aura::RootWindow::GetInstance()->SetHostSize(gfx::Size(500, 400)); |
| 30 container_.reset(new aura::Window(NULL)); | 30 container_.reset(new aura::Window(NULL)); |
| 31 container_->Init(ui::Layer::LAYER_HAS_NO_TEXTURE); | 31 container_->Init(ui::Layer::LAYER_HAS_NO_TEXTURE); |
| 32 container_->SetBounds(gfx::Rect(0, 0, 500, 500)); | 32 container_->SetBounds(gfx::Rect(0, 0, 500, 500)); |
| 33 layout_manager_ = new internal::ToplevelLayoutManager(); | 33 layout_manager_ = new internal::ToplevelLayoutManager(); |
| 34 container_->SetLayoutManager(layout_manager_); | 34 container_->SetLayoutManager(layout_manager_); |
| 35 } | 35 } |
| 36 | 36 |
| 37 aura::Window* CreateTestWindow(const gfx::Rect& bounds) { | 37 aura::Window* CreateTestWindow(const gfx::Rect& bounds) { |
| 38 aura::Window* window = new aura::Window(NULL); | 38 aura::Window* window = new aura::Window(NULL); |
| 39 window->Init(ui::Layer::LAYER_HAS_NO_TEXTURE); | 39 window->Init(ui::Layer::LAYER_HAS_NO_TEXTURE); |
| (...skipping 30 matching lines...) Expand all 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::kShowStateKey, ui::SHOW_STATE_FULLSCREEN); | 72 window->SetIntProperty(aura::kShowStateKey, ui::SHOW_STATE_FULLSCREEN); |
| 73 EXPECT_EQ(gfx::Screen::GetMonitorAreaNearestWindow(window.get()), | 73 EXPECT_EQ(gfx::Screen::GetMonitorAreaNearestWindow(window.get()), |
| 74 window->bounds()); | 74 window->bounds()); |
| 75 window->SetIntProperty(aura::kShowStateKey, ui::SHOW_STATE_NORMAL); | 75 window->SetIntProperty(aura::kShowStateKey, ui::SHOW_STATE_NORMAL); |
| 76 EXPECT_EQ(bounds, window->bounds()); | 76 EXPECT_EQ(bounds, window->bounds()); |
| 77 } | 77 } |
| 78 | 78 |
| 79 } // namespace aura_shell | 79 } // namespace aura_shell |
| OLD | NEW |