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

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

Issue 2287583002: mash: Fix crash when closing system tray menu (Closed)
Patch Set: Created 4 years, 3 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/mus/BUILD.gn ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(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 "ash/common/shell_window_ids.h"
8 #include "ash/common/wm_window.h"
9 #include "ash/mus/bridge/wm_window_mus.h"
10 #include "ash/mus/test/wm_test_base.h"
11 #include "ui/gfx/geometry/rect.h"
12
13 namespace ash {
14
15 using ContainerFinderTest = mus::WmTestBase;
James Cook 2016/08/26 17:49:13 I did the same thing as MruWindowTrackerTest and c
16
17 TEST_F(ContainerFinderTest, GetContainerForWindow) {
18 // Create a normal window in the default container.
19 WmWindow* window =
20 mus::WmWindowMus::Get(CreateTestWindow(gfx::Rect(1, 2, 3, 4)));
21
22 // The window itself is not a container.
23 EXPECT_EQ(kShellWindowId_Invalid, window->GetShellWindowId());
24
25 // Container lookup finds the default container.
26 WmWindow* container = wm::GetContainerForWindow(window);
27 ASSERT_TRUE(container);
28 EXPECT_EQ(kShellWindowId_DefaultContainer, container->GetShellWindowId());
29 }
30
31 } // namespace ash
OLDNEW
« no previous file with comments | « ash/mus/BUILD.gn ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698