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/screen_pinning_controller.h" | 5 #include "ash/wm/screen_pinning_controller.h" |
6 | 6 |
7 #include <vector> | 7 #include <vector> |
8 | 8 |
9 #include "ash/common/accelerators/accelerator_controller.h" | 9 #include "ash/common/accelerators/accelerator_controller.h" |
10 #include "ash/common/wm/window_state.h" | 10 #include "ash/common/wm/window_state.h" |
11 #include "ash/common/wm/wm_event.h" | 11 #include "ash/common/wm/wm_event.h" |
12 #include "ash/common/wm_shell.h" | 12 #include "ash/common/wm_shell.h" |
13 #include "ash/common/wm_window.h" | 13 #include "ash/common/wm_window.h" |
| 14 #include "ash/shell.h" |
14 #include "ash/test/ash_test_base.h" | 15 #include "ash/test/ash_test_base.h" |
15 #include "ash/wm/window_util.h" | 16 #include "ash/wm/window_util.h" |
16 #include "base/stl_util.h" | 17 #include "base/stl_util.h" |
17 #include "ui/aura/window.h" | 18 #include "ui/aura/window.h" |
18 | 19 |
19 namespace ash { | 20 namespace ash { |
20 namespace { | 21 namespace { |
21 | 22 |
22 int FindIndex(const std::vector<aura::Window*>& windows, | 23 int FindIndex(const std::vector<aura::Window*>& windows, |
23 const aura::Window* target) { | 24 const aura::Window* target) { |
(...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
152 } | 153 } |
153 } | 154 } |
154 | 155 |
155 TEST_F(ScreenPinningControllerTest, TrustedPinnedWithAccelerator) { | 156 TEST_F(ScreenPinningControllerTest, TrustedPinnedWithAccelerator) { |
156 aura::Window* w1 = CreateTestWindowInShellWithId(0); | 157 aura::Window* w1 = CreateTestWindowInShellWithId(0); |
157 wm::ActivateWindow(w1); | 158 wm::ActivateWindow(w1); |
158 | 159 |
159 wm::PinWindow(w1, /* trusted */ true); | 160 wm::PinWindow(w1, /* trusted */ true); |
160 EXPECT_TRUE(WmShell::Get()->IsPinned()); | 161 EXPECT_TRUE(WmShell::Get()->IsPinned()); |
161 | 162 |
162 WmShell::Get()->accelerator_controller()->PerformActionIfEnabled(UNPIN); | 163 Shell::Get()->accelerator_controller()->PerformActionIfEnabled(UNPIN); |
163 // The UNPIN accelerator key is disabled for trusted pinned and the window | 164 // The UNPIN accelerator key is disabled for trusted pinned and the window |
164 // must be still pinned. | 165 // must be still pinned. |
165 EXPECT_TRUE(WmShell::Get()->IsPinned()); | 166 EXPECT_TRUE(WmShell::Get()->IsPinned()); |
166 } | 167 } |
167 | 168 |
168 } // namespace ash | 169 } // namespace ash |
OLD | NEW |