| 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/shell_window_ids.h" | |
| 8 #include "ash/common/test/ash_test.h" | 7 #include "ash/common/test/ash_test.h" |
| 9 #include "ash/common/wm/window_state.h" | 8 #include "ash/common/wm/window_state.h" |
| 10 #include "ash/common/wm_shell.h" | 9 #include "ash/common/wm_shell.h" |
| 11 #include "ash/common/wm_window.h" | 10 #include "ash/common/wm_window.h" |
| 11 #include "ash/shared/shell_window_ids.h" |
| 12 #include "ui/base/hit_test.h" | 12 #include "ui/base/hit_test.h" |
| 13 | 13 |
| 14 namespace ash { | 14 namespace ash { |
| 15 | 15 |
| 16 class MruWindowTrackerTest : public AshTest { | 16 class MruWindowTrackerTest : public AshTest { |
| 17 public: | 17 public: |
| 18 MruWindowTrackerTest() {} | 18 MruWindowTrackerTest() {} |
| 19 ~MruWindowTrackerTest() override {} | 19 ~MruWindowTrackerTest() override {} |
| 20 | 20 |
| 21 std::unique_ptr<WindowOwner> CreateTestWindow() { | 21 std::unique_ptr<WindowOwner> CreateTestWindow() { |
| (...skipping 110 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 132 // Expect the windows with |kExcludeFromMruKey| property being true are not | 132 // Expect the windows with |kExcludeFromMruKey| property being true are not |
| 133 // in the list. | 133 // in the list. |
| 134 WmWindow::Windows window_list = mru_window_tracker()->BuildMruWindowList(); | 134 WmWindow::Windows window_list = mru_window_tracker()->BuildMruWindowList(); |
| 135 | 135 |
| 136 // As |w1| and |w3| are excluded from the list, only |w2| should be present. | 136 // As |w1| and |w3| are excluded from the list, only |w2| should be present. |
| 137 ASSERT_EQ(1u, window_list.size()); | 137 ASSERT_EQ(1u, window_list.size()); |
| 138 EXPECT_EQ(w2, window_list[0]); | 138 EXPECT_EQ(w2, window_list[0]); |
| 139 } | 139 } |
| 140 | 140 |
| 141 } // namespace ash | 141 } // namespace ash |
| OLD | NEW |