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

Side by Side Diff: ash/wm/workspace/workspace_layout_manager_unittest.cc

Issue 2035543004: Shuffles and renames ash/common/wm classes (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: random changes for chrome tests Created 4 years, 6 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
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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/common/wm/workspace/workspace_layout_manager.h" 5 #include "ash/common/wm/workspace/workspace_layout_manager.h"
6 6
7 #include <string> 7 #include <string>
8 #include <utility> 8 #include <utility>
9 9
10 #include "ash/aura/wm_window_aura.h"
10 #include "ash/common/shell_window_ids.h" 11 #include "ash/common/shell_window_ids.h"
11 #include "ash/common/wm/window_state.h" 12 #include "ash/common/wm/window_state.h"
12 #include "ash/common/wm/wm_event.h" 13 #include "ash/common/wm/wm_event.h"
13 #include "ash/common/wm/workspace/workspace_window_resizer.h" 14 #include "ash/common/wm/workspace/workspace_window_resizer.h"
14 #include "ash/display/display_manager.h" 15 #include "ash/display/display_manager.h"
15 #include "ash/root_window_controller.h" 16 #include "ash/root_window_controller.h"
16 #include "ash/screen_util.h" 17 #include "ash/screen_util.h"
17 #include "ash/session/session_state_delegate.h" 18 #include "ash/session/session_state_delegate.h"
18 #include "ash/shelf/shelf.h" 19 #include "ash/shelf/shelf.h"
19 #include "ash/shelf/shelf_layout_manager.h" 20 #include "ash/shelf/shelf_layout_manager.h"
20 #include "ash/shell.h" 21 #include "ash/shell.h"
21 #include "ash/shell_observer.h" 22 #include "ash/shell_observer.h"
22 #include "ash/test/ash_test_base.h" 23 #include "ash/test/ash_test_base.h"
23 #include "ash/test/display_manager_test_api.h" 24 #include "ash/test/display_manager_test_api.h"
24 #include "ash/wm/aura/wm_window_aura.h"
25 #include "ash/wm/maximize_mode/workspace_backdrop_delegate.h" 25 #include "ash/wm/maximize_mode/workspace_backdrop_delegate.h"
26 #include "ash/wm/window_state_aura.h" 26 #include "ash/wm/window_state_aura.h"
27 #include "ash/wm/window_util.h" 27 #include "ash/wm/window_util.h"
28 #include "base/compiler_specific.h" 28 #include "base/compiler_specific.h"
29 #include "ui/aura/client/aura_constants.h" 29 #include "ui/aura/client/aura_constants.h"
30 #include "ui/aura/test/test_windows.h" 30 #include "ui/aura/test/test_windows.h"
31 #include "ui/aura/window.h" 31 #include "ui/aura/window.h"
32 #include "ui/aura/window_event_dispatcher.h" 32 #include "ui/aura/window_event_dispatcher.h"
33 #include "ui/base/ui_base_types.h" 33 #include "ui/base/ui_base_types.h"
34 #include "ui/display/manager/display_layout.h" 34 #include "ui/display/manager/display_layout.h"
(...skipping 785 matching lines...) Expand 10 before | Expand all | Expand 10 after
820 window_bounds.ToString()); 820 window_bounds.ToString());
821 EXPECT_EQ(window_bounds.ToString(), window->bounds().ToString()); 821 EXPECT_EQ(window_bounds.ToString(), window->bounds().ToString());
822 } 822 }
823 823
824 // Following tests are written to test the backdrop functionality. 824 // Following tests are written to test the backdrop functionality.
825 825
826 namespace { 826 namespace {
827 827
828 WorkspaceLayoutManager* GetWorkspaceLayoutManager(aura::Window* container) { 828 WorkspaceLayoutManager* GetWorkspaceLayoutManager(aura::Window* container) {
829 return static_cast<WorkspaceLayoutManager*>( 829 return static_cast<WorkspaceLayoutManager*>(
830 wm::WmWindowAura::Get(container)->GetLayoutManager()); 830 WmWindowAura::Get(container)->GetLayoutManager());
831 } 831 }
832 832
833 class WorkspaceLayoutManagerBackdropTest : public test::AshTestBase { 833 class WorkspaceLayoutManagerBackdropTest : public test::AshTestBase {
834 public: 834 public:
835 WorkspaceLayoutManagerBackdropTest() : default_container_(nullptr) {} 835 WorkspaceLayoutManagerBackdropTest() : default_container_(nullptr) {}
836 ~WorkspaceLayoutManagerBackdropTest() override {} 836 ~WorkspaceLayoutManagerBackdropTest() override {}
837 837
838 void SetUp() override { 838 void SetUp() override {
839 test::AshTestBase::SetUp(); 839 test::AshTestBase::SetUp();
840 UpdateDisplay("800x600"); 840 UpdateDisplay("800x600");
(...skipping 311 matching lines...) Expand 10 before | Expand all | Expand 10 after
1152 EXPECT_EQ(gfx::Rect(50, 1152 EXPECT_EQ(gfx::Rect(50,
1153 keyboard_bounds.y() - keyboard_bounds.height()/2, 1153 keyboard_bounds.y() - keyboard_bounds.height()/2,
1154 occluded_window_bounds.width(), 1154 occluded_window_bounds.width(),
1155 occluded_window_bounds.height()).ToString(), 1155 occluded_window_bounds.height()).ToString(),
1156 window->bounds().ToString()); 1156 window->bounds().ToString());
1157 HideKeyboard(); 1157 HideKeyboard();
1158 EXPECT_EQ(occluded_window_bounds.ToString(), window->bounds().ToString()); 1158 EXPECT_EQ(occluded_window_bounds.ToString(), window->bounds().ToString());
1159 } 1159 }
1160 1160
1161 } // namespace ash 1161 } // namespace ash
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698