Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(200)

Unified Diff: ui/aura_shell/toplevel_layout_manager_unittest.cc

Issue 9035001: Move some more WM functionality down into ash. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 9 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ui/aura_shell/toplevel_layout_manager.cc ('k') | ui/aura_shell/toplevel_window_event_filter.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/aura_shell/toplevel_layout_manager_unittest.cc
===================================================================
--- ui/aura_shell/toplevel_layout_manager_unittest.cc (revision 115655)
+++ ui/aura_shell/toplevel_layout_manager_unittest.cc (working copy)
@@ -1,80 +0,0 @@
-// Copyright (c) 2011 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#include "ui/aura_shell/toplevel_layout_manager.h"
-
-#include "base/basictypes.h"
-#include "base/compiler_specific.h"
-#include "ui/aura/client/aura_constants.h"
-#include "ui/aura/root_window.h"
-#include "ui/aura/screen_aura.h"
-#include "ui/aura/test/aura_test_base.h"
-#include "ui/base/ui_base_types.h"
-#include "ui/aura/window.h"
-
-namespace aura_shell {
-
-namespace {
-
-class ToplevelLayoutManagerTest : public aura::test::AuraTestBase {
- public:
- ToplevelLayoutManagerTest() : layout_manager_(NULL) {}
- virtual ~ToplevelLayoutManagerTest() {}
-
- virtual void SetUp() OVERRIDE {
- aura::test::AuraTestBase::SetUp();
- aura::RootWindow::GetInstance()->screen()->set_work_area_insets(
- gfx::Insets(1, 2, 3, 4));
- aura::RootWindow::GetInstance()->SetHostSize(gfx::Size(500, 400));
- container_.reset(new aura::Window(NULL));
- container_->Init(ui::Layer::LAYER_HAS_NO_TEXTURE);
- container_->SetBounds(gfx::Rect(0, 0, 500, 500));
- layout_manager_ = new internal::ToplevelLayoutManager();
- container_->SetLayoutManager(layout_manager_);
- }
-
- aura::Window* CreateTestWindow(const gfx::Rect& bounds) {
- aura::Window* window = new aura::Window(NULL);
- window->Init(ui::Layer::LAYER_HAS_NO_TEXTURE);
- window->SetBounds(bounds);
- window->Show();
- window->SetParent(container_.get());
- return window;
- }
-
- private:
- // Owned by |container_|.
- internal::ToplevelLayoutManager* layout_manager_;
-
- scoped_ptr<aura::Window> container_;
-
- DISALLOW_COPY_AND_ASSIGN(ToplevelLayoutManagerTest);
-};
-
-} // namespace
-
-// Tests normal->maximize->normal.
-TEST_F(ToplevelLayoutManagerTest, Maximize) {
- gfx::Rect bounds(100, 100, 200, 200);
- scoped_ptr<aura::Window> window(CreateTestWindow(bounds));
- window->SetIntProperty(aura::client::kShowStateKey, ui::SHOW_STATE_MAXIMIZED);
- EXPECT_EQ(gfx::Screen::GetMonitorWorkAreaNearestWindow(window.get()),
- window->bounds());
- window->SetIntProperty(aura::client::kShowStateKey, ui::SHOW_STATE_NORMAL);
- EXPECT_EQ(bounds, window->bounds());
-}
-
-// Tests normal->fullscreen->normal.
-TEST_F(ToplevelLayoutManagerTest, Fullscreen) {
- gfx::Rect bounds(100, 100, 200, 200);
- scoped_ptr<aura::Window> window(CreateTestWindow(bounds));
- window->SetIntProperty(aura::client::kShowStateKey,
- ui::SHOW_STATE_FULLSCREEN);
- EXPECT_EQ(gfx::Screen::GetMonitorAreaNearestWindow(window.get()),
- window->bounds());
- window->SetIntProperty(aura::client::kShowStateKey, ui::SHOW_STATE_NORMAL);
- EXPECT_EQ(bounds, window->bounds());
-}
-
-} // namespace aura_shell
« no previous file with comments | « ui/aura_shell/toplevel_layout_manager.cc ('k') | ui/aura_shell/toplevel_window_event_filter.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698