| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 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 | 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/container_finder.h" | 5 #include "ash/wm/container_finder.h" |
| 6 | 6 |
| 7 #include <memory> | 7 #include <memory> |
| 8 | 8 |
| 9 #include "ash/public/cpp/shell_window_ids.h" | 9 #include "ash/public/cpp/shell_window_ids.h" |
| 10 #include "ash/test/ash_test.h" | 10 #include "ash/test/ash_test_base.h" |
| 11 #include "ash/wm_window.h" | |
| 12 #include "ui/aura/window.h" | 11 #include "ui/aura/window.h" |
| 13 #include "ui/gfx/geometry/rect.h" | 12 #include "ui/gfx/geometry/rect.h" |
| 14 #include "ui/views/widget/widget.h" | 13 #include "ui/views/widget/widget.h" |
| 15 | 14 |
| 16 namespace ash { | 15 namespace ash { |
| 17 | 16 |
| 18 using ContainerFinderTest = AshTest; | 17 using ContainerFinderTest = test::AshTestBase; |
| 19 | 18 |
| 20 TEST_F(ContainerFinderTest, GetContainerForWindow) { | 19 TEST_F(ContainerFinderTest, GetContainerForWindow) { |
| 21 // Create a normal widget in the default container. | 20 // Create a normal widget in the default container. |
| 22 std::unique_ptr<views::Widget> widget = | 21 std::unique_ptr<views::Widget> widget = CreateTestWidget( |
| 23 CreateTestWidget(gfx::Rect(1, 2, 3, 4)); | 22 nullptr, kShellWindowId_DefaultContainer, gfx::Rect(1, 2, 3, 4)); |
| 24 aura::Window* window = widget->GetNativeWindow(); | 23 aura::Window* window = widget->GetNativeWindow(); |
| 25 | 24 |
| 26 // The window itself is not a container. | 25 // The window itself is not a container. |
| 27 EXPECT_EQ(kShellWindowId_Invalid, window->id()); | 26 EXPECT_EQ(kShellWindowId_Invalid, window->id()); |
| 28 | 27 |
| 29 // Container lookup finds the default container. | 28 // Container lookup finds the default container. |
| 30 WmWindow* container = wm::GetContainerForWindow(WmWindow::Get(window)); | 29 aura::Window* container = wm::GetContainerForWindow(window); |
| 31 ASSERT_TRUE(container); | 30 ASSERT_TRUE(container); |
| 32 EXPECT_EQ(kShellWindowId_DefaultContainer, container->aura_window()->id()); | 31 EXPECT_EQ(kShellWindowId_DefaultContainer, container->id()); |
| 33 } | 32 } |
| 34 | 33 |
| 35 } // namespace ash | 34 } // namespace ash |
| OLD | NEW |