| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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/mru_window_tracker.h" | 5 #include "ash/common/wm/mru_window_tracker.h" |
| 6 | 6 |
| 7 #include "ash/aura/wm_window_aura.h" | |
| 8 #include "ash/common/shell_window_ids.h" | 7 #include "ash/common/shell_window_ids.h" |
| 9 #include "ash/common/wm/window_state.h" | 8 #include "ash/common/wm/window_state.h" |
| 10 #include "ash/shell.h" | 9 #include "ash/common/wm_shell.h" |
| 11 #include "ash/test/ash_test_base.h" | 10 #include "ash/mus/bridge/wm_window_mus.h" |
| 12 #include "ash/wm/window_state_aura.h" | 11 #include "ash/mus/test/wm_test_base.h" |
| 13 #include "ash/wm/window_util.h" | |
| 14 #include "ui/aura/window.h" | |
| 15 #include "ui/base/hit_test.h" | 12 #include "ui/base/hit_test.h" |
| 16 #include "ui/views/widget/widget.h" | |
| 17 | 13 |
| 18 namespace ash { | 14 namespace ash { |
| 19 | 15 |
| 20 class MruWindowTrackerTest : public test::AshTestBase { | 16 class MruWindowTrackerTest : public test::AshTestBase { |
| 21 public: | 17 public: |
| 22 MruWindowTrackerTest() {} | 18 MruWindowTrackerTest() {} |
| 23 ~MruWindowTrackerTest() override {} | 19 ~MruWindowTrackerTest() override {} |
| 24 | 20 |
| 25 aura::Window* CreateWindow() { | 21 aura::Window* CreateWindow() { |
| 26 return CreateTestWindowInShellWithBounds(gfx::Rect(0, 0, 400, 400)); | 22 return CreateTestWindowInShellWithBounds(gfx::Rect(0, 0, 400, 400)); |
| (...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 97 drag_container->AddChild(w1.get()); | 93 drag_container->AddChild(w1.get()); |
| 98 EXPECT_TRUE(wm::GetWindowState(w1.get())->is_dragged()); | 94 EXPECT_TRUE(wm::GetWindowState(w1.get())->is_dragged()); |
| 99 | 95 |
| 100 // The dragged window should only be in the list once. | 96 // The dragged window should only be in the list once. |
| 101 aura::Window::Windows window_list = WmWindowAura::ToAuraWindows( | 97 aura::Window::Windows window_list = WmWindowAura::ToAuraWindows( |
| 102 mru_window_tracker()->BuildWindowListIgnoreModal()); | 98 mru_window_tracker()->BuildWindowListIgnoreModal()); |
| 103 EXPECT_EQ(1, std::count(window_list.begin(), window_list.end(), w1.get())); | 99 EXPECT_EQ(1, std::count(window_list.begin(), window_list.end(), w1.get())); |
| 104 } | 100 } |
| 105 | 101 |
| 106 } // namespace ash | 102 } // namespace ash |
| OLD | NEW |