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

Side by Side Diff: ash/wm/container_finder_unittest.cc

Issue 2734733002: Revert "chromeos: Move files in //ash/common to //ash, part 3" (Closed)
Patch Set: Created 3 years, 9 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 unified diff | Download patch
« no previous file with comments | « ash/wm/container_finder.cc ('k') | ash/wm/default_state.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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/common/wm_window.h"
9 #include "ash/public/cpp/shell_window_ids.h" 10 #include "ash/public/cpp/shell_window_ids.h"
10 #include "ash/test/ash_test.h" 11 #include "ash/test/ash_test.h"
11 #include "ash/wm_window.h"
12 #include "ui/gfx/geometry/rect.h" 12 #include "ui/gfx/geometry/rect.h"
13 #include "ui/views/widget/widget.h" 13 #include "ui/views/widget/widget.h"
14 14
15 namespace ash { 15 namespace ash {
16 16
17 using ContainerFinderTest = AshTest; 17 using ContainerFinderTest = AshTest;
18 18
19 TEST_F(ContainerFinderTest, GetContainerForWindow) { 19 TEST_F(ContainerFinderTest, GetContainerForWindow) {
20 // Create a normal widget in the default container. 20 // Create a normal widget in the default container.
21 std::unique_ptr<views::Widget> widget = 21 std::unique_ptr<views::Widget> widget =
22 CreateTestWidget(gfx::Rect(1, 2, 3, 4)); 22 CreateTestWidget(gfx::Rect(1, 2, 3, 4));
23 WmWindow* window = WmWindow::Get(widget->GetNativeWindow()); 23 WmWindow* window = WmWindow::Get(widget->GetNativeWindow());
24 24
25 // The window itself is not a container. 25 // The window itself is not a container.
26 EXPECT_EQ(kShellWindowId_Invalid, window->GetShellWindowId()); 26 EXPECT_EQ(kShellWindowId_Invalid, window->GetShellWindowId());
27 27
28 // Container lookup finds the default container. 28 // Container lookup finds the default container.
29 WmWindow* container = wm::GetContainerForWindow(window); 29 WmWindow* container = wm::GetContainerForWindow(window);
30 ASSERT_TRUE(container); 30 ASSERT_TRUE(container);
31 EXPECT_EQ(kShellWindowId_DefaultContainer, container->GetShellWindowId()); 31 EXPECT_EQ(kShellWindowId_DefaultContainer, container->GetShellWindowId());
32 } 32 }
33 33
34 } // namespace ash 34 } // namespace ash
OLDNEW
« no previous file with comments | « ash/wm/container_finder.cc ('k') | ash/wm/default_state.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698