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

Side by Side Diff: ash/mus/top_level_window_factory_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/mus/top_level_window_factory.cc ('k') | ash/mus/wallpaper_delegate_mus.h » ('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/mus/top_level_window_factory.h" 5 #include "ash/mus/top_level_window_factory.h"
6 6
7 #include <stdint.h> 7 #include <stdint.h>
8 8
9 #include <map> 9 #include <map>
10 #include <string> 10 #include <string>
11 #include <vector> 11 #include <vector>
12 12
13 #include "ash/common/wm_shell.h"
14 #include "ash/common/wm_window.h"
13 #include "ash/mus/test/wm_test_base.h" 15 #include "ash/mus/test/wm_test_base.h"
14 #include "ash/mus/window_manager.h" 16 #include "ash/mus/window_manager.h"
15 #include "ash/mus/window_manager_application.h" 17 #include "ash/mus/window_manager_application.h"
16 #include "ash/test/ash_test.h" 18 #include "ash/test/ash_test.h"
17 #include "ash/test/ash_test_base.h" 19 #include "ash/test/ash_test_base.h"
18 #include "ash/test/ash_test_helper.h" 20 #include "ash/test/ash_test_helper.h"
19 #include "ash/wm_shell.h"
20 #include "ash/wm_window.h"
21 #include "ui/aura/window.h" 21 #include "ui/aura/window.h"
22 #include "ui/display/screen.h" 22 #include "ui/display/screen.h"
23 23
24 namespace ash { 24 namespace ash {
25 25
26 namespace { 26 namespace {
27 27
28 int64_t GetDisplayId(aura::Window* window) { 28 int64_t GetDisplayId(aura::Window* window) {
29 return display::Screen::GetScreen()->GetDisplayNearestWindow(window).id(); 29 return display::Screen::GetScreen()->GetDisplayNearestWindow(window).id();
30 } 30 }
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
63 TEST_F(TopLevelWindowFactoryAshTest, TopLevelNotShownOnCreate) { 63 TEST_F(TopLevelWindowFactoryAshTest, TopLevelNotShownOnCreate) {
64 std::map<std::string, std::vector<uint8_t>> properties; 64 std::map<std::string, std::vector<uint8_t>> properties;
65 std::unique_ptr<aura::Window> window(mus::CreateAndParentTopLevelWindow( 65 std::unique_ptr<aura::Window> window(mus::CreateAndParentTopLevelWindow(
66 ash_test_helper()->window_manager_app()->window_manager(), 66 ash_test_helper()->window_manager_app()->window_manager(),
67 ui::mojom::WindowType::WINDOW, &properties)); 67 ui::mojom::WindowType::WINDOW, &properties));
68 ASSERT_TRUE(window); 68 ASSERT_TRUE(window);
69 EXPECT_FALSE(window->IsVisible()); 69 EXPECT_FALSE(window->IsVisible());
70 } 70 }
71 71
72 } // namespace ash 72 } // namespace ash
OLDNEW
« no previous file with comments | « ash/mus/top_level_window_factory.cc ('k') | ash/mus/wallpaper_delegate_mus.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698