| 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/common/test/ash_test.h" | 7 #include "ash/common/test/ash_test.h" |
| 8 #include "ash/common/wm/window_state.h" | 8 #include "ash/common/wm/window_state.h" |
| 9 #include "ash/common/wm_shell.h" | 9 #include "ash/common/wm_shell.h" |
| 10 #include "ash/common/wm_window.h" | 10 #include "ash/common/wm_window.h" |
| 11 #include "ash/public/cpp/shell_window_ids.h" | 11 #include "ash/public/cpp/shell_window_ids.h" |
| 12 #include "ash/shell.h" |
| 12 #include "ui/base/hit_test.h" | 13 #include "ui/base/hit_test.h" |
| 13 | 14 |
| 14 namespace ash { | 15 namespace ash { |
| 15 | 16 |
| 16 class MruWindowTrackerTest : public AshTest { | 17 class MruWindowTrackerTest : public AshTest { |
| 17 public: | 18 public: |
| 18 MruWindowTrackerTest() {} | 19 MruWindowTrackerTest() {} |
| 19 ~MruWindowTrackerTest() override {} | 20 ~MruWindowTrackerTest() override {} |
| 20 | 21 |
| 21 std::unique_ptr<WindowOwner> CreateTestWindow() { | 22 std::unique_ptr<WindowOwner> CreateTestWindow() { |
| 22 return AshTest::CreateTestWindow(gfx::Rect(0, 0, 400, 400)); | 23 return AshTest::CreateTestWindow(gfx::Rect(0, 0, 400, 400)); |
| 23 } | 24 } |
| 24 | 25 |
| 25 MruWindowTracker* mru_window_tracker() { | 26 MruWindowTracker* mru_window_tracker() { |
| 26 return WmShell::Get()->mru_window_tracker(); | 27 return Shell::Get()->mru_window_tracker(); |
| 27 } | 28 } |
| 28 | 29 |
| 29 private: | 30 private: |
| 30 DISALLOW_COPY_AND_ASSIGN(MruWindowTrackerTest); | 31 DISALLOW_COPY_AND_ASSIGN(MruWindowTrackerTest); |
| 31 }; | 32 }; |
| 32 | 33 |
| 33 // Basic test that the activation order is tracked. | 34 // Basic test that the activation order is tracked. |
| 34 TEST_F(MruWindowTrackerTest, Basic) { | 35 TEST_F(MruWindowTrackerTest, Basic) { |
| 35 std::unique_ptr<WindowOwner> w1_owner(CreateTestWindow()); | 36 std::unique_ptr<WindowOwner> w1_owner(CreateTestWindow()); |
| 36 WmWindow* w1 = w1_owner->window(); | 37 WmWindow* w1 = w1_owner->window(); |
| (...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 103 drag_container->AddChild(w1); | 104 drag_container->AddChild(w1); |
| 104 EXPECT_TRUE(w1->GetWindowState()->is_dragged()); | 105 EXPECT_TRUE(w1->GetWindowState()->is_dragged()); |
| 105 | 106 |
| 106 // The dragged window should only be in the list once. | 107 // The dragged window should only be in the list once. |
| 107 WmWindow::Windows window_list = | 108 WmWindow::Windows window_list = |
| 108 mru_window_tracker()->BuildWindowListIgnoreModal(); | 109 mru_window_tracker()->BuildWindowListIgnoreModal(); |
| 109 EXPECT_EQ(1, std::count(window_list.begin(), window_list.end(), w1)); | 110 EXPECT_EQ(1, std::count(window_list.begin(), window_list.end(), w1)); |
| 110 } | 111 } |
| 111 | 112 |
| 112 } // namespace ash | 113 } // namespace ash |
| OLD | NEW |