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

Unified Diff: mash/wm/layout_manager_unittest.cc

Issue 2029883002: Moves mash/wm into ash/mus (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@remove_static_assert
Patch Set: move comment Created 4 years, 7 months 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 | « mash/wm/layout_manager.cc ('k') | mash/wm/main.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mash/wm/layout_manager_unittest.cc
diff --git a/mash/wm/layout_manager_unittest.cc b/mash/wm/layout_manager_unittest.cc
deleted file mode 100644
index 1ddbfe3c37ea70e7a12896e6deb1b202b8ab0cf1..0000000000000000000000000000000000000000
--- a/mash/wm/layout_manager_unittest.cc
+++ /dev/null
@@ -1,67 +0,0 @@
-// Copyright 2015 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 "mash/wm/layout_manager.h"
-
-#include <memory>
-
-#include "base/macros.h"
-#include "components/mus/public/cpp/tests/test_window.h"
-#include "testing/gtest/include/gtest/gtest.h"
-
-namespace mash {
-namespace wm {
-
-class TestLayoutManager : public LayoutManager {
- public:
- explicit TestLayoutManager(mus::Window* window)
- : LayoutManager(window), layout_called_(false) {}
- ~TestLayoutManager() override {}
-
- bool GetAndResetLayoutCalled() {
- bool was_layout_called = layout_called_;
- layout_called_ = false;
- return was_layout_called;
- }
-
- private:
- // LayoutManager:
- void LayoutWindow(mus::Window* window) override {
- layout_called_ = true;
- }
-
- bool layout_called_;
-
- DISALLOW_COPY_AND_ASSIGN(TestLayoutManager);
-};
-
-// Tests that owning window can be destroyed before the layout manager.
-TEST(LayoutManagerTest, OwningWindowDestroyedFirst) {
- std::unique_ptr<mus::TestWindow> parent(new mus::TestWindow(1));
- mus::TestWindow child(2);
- TestLayoutManager layout_manager(parent.get());
- parent->AddChild(&child);
- EXPECT_TRUE(layout_manager.GetAndResetLayoutCalled());
- parent.reset();
- child.SetBounds(gfx::Rect(100, 200));
-}
-
-// Tests that the layout manager can be destroyed before the owning window.
-TEST(LayoutManagerTest, LayoutManagerDestroyedFirst) {
- mus::TestWindow parent(1);
- mus::TestWindow child(2);
- std::unique_ptr<TestLayoutManager> layout_manager(
- new TestLayoutManager(&parent));
- parent.AddChild(&child);
- EXPECT_TRUE(layout_manager->GetAndResetLayoutCalled());
-
- parent.SetBounds(gfx::Rect(100, 200));
- EXPECT_TRUE(layout_manager->GetAndResetLayoutCalled());
-
- layout_manager.reset();
- parent.SetBounds(gfx::Rect(200, 100));
-}
-
-} // namespace wm
-} // namespace mash
« no previous file with comments | « mash/wm/layout_manager.cc ('k') | mash/wm/main.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698