| OLD | NEW |
| (Empty) | |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #include "ash/common/wm/container_finder.h" |
| 6 |
| 7 #include <memory> |
| 8 |
| 9 #include "ash/common/shell_window_ids.h" |
| 10 #include "ash/common/wm_lookup.h" |
| 11 #include "ash/common/wm_window.h" |
| 12 #include "ash/test/ash_test_base.h" |
| 13 #include "ui/gfx/geometry/rect.h" |
| 14 #include "ui/views/widget/widget.h" |
| 15 |
| 16 namespace ash { |
| 17 |
| 18 using ContainerFinderTest = test::AshTestBase; |
| 19 |
| 20 TEST_F(ContainerFinderTest, GetContainerForWindow) { |
| 21 // Create a normal widget in the default container. |
| 22 std::unique_ptr<views::Widget> widget = CreateTestWidget( |
| 23 nullptr, kShellWindowId_DefaultContainer, gfx::Rect(1, 2, 3, 4)); |
| 24 WmWindow* window = WmLookup::Get()->GetWindowForWidget(widget.get()); |
| 25 |
| 26 // The window itself is not a container. |
| 27 EXPECT_EQ(kShellWindowId_Invalid, window->GetShellWindowId()); |
| 28 |
| 29 // Container lookup finds the default container. |
| 30 WmWindow* container = wm::GetContainerForWindow(window); |
| 31 ASSERT_TRUE(container); |
| 32 EXPECT_EQ(kShellWindowId_DefaultContainer, container->GetShellWindowId()); |
| 33 } |
| 34 |
| 35 } // namespace ash |
| OLD | NEW |