| 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 #ifndef ASH_MUS_TEST_WM_TEST_BASE_H_ | 5 #ifndef ASH_MUS_TEST_WM_TEST_BASE_H_ |
| 6 #define ASH_MUS_TEST_WM_TEST_BASE_H_ | 6 #define ASH_MUS_TEST_WM_TEST_BASE_H_ |
| 7 | 7 |
| 8 #include <memory> | 8 #include <memory> |
| 9 #include <string> | 9 #include <string> |
| 10 | 10 |
| (...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 75 const gfx::Rect& bounds); | 75 const gfx::Rect& bounds); |
| 76 | 76 |
| 77 protected: | 77 protected: |
| 78 // testing::Test: | 78 // testing::Test: |
| 79 void SetUp() override; | 79 void SetUp() override; |
| 80 void TearDown() override; | 80 void TearDown() override; |
| 81 | 81 |
| 82 private: | 82 private: |
| 83 friend class AshTestImplMus; | 83 friend class AshTestImplMus; |
| 84 | 84 |
| 85 // Simulates the first user logging in and the session becoming active. | |
| 86 // Classic ash handles this via AshTestHelper and TestSessionStateDelegate. | |
| 87 void SimulateUserLogin(); | |
| 88 | |
| 89 bool setup_called_ = false; | 85 bool setup_called_ = false; |
| 90 bool teardown_called_ = false; | 86 bool teardown_called_ = false; |
| 91 std::unique_ptr<ui::ScopedAnimationDurationScaleMode> zero_duration_mode_; | 87 std::unique_ptr<ui::ScopedAnimationDurationScaleMode> zero_duration_mode_; |
| 92 std::unique_ptr<WmWindowAuraTestApi::GlobalMinimumSizeLock> | 88 std::unique_ptr<WmWindowAuraTestApi::GlobalMinimumSizeLock> |
| 93 minimum_size_lock_; | 89 minimum_size_lock_; |
| 94 std::unique_ptr<WmTestHelper> test_helper_; | 90 std::unique_ptr<WmTestHelper> test_helper_; |
| 95 | 91 |
| 96 DISALLOW_COPY_AND_ASSIGN(WmTestBase); | 92 DISALLOW_COPY_AND_ASSIGN(WmTestBase); |
| 97 }; | 93 }; |
| 98 | 94 |
| 99 } // namespace mus | 95 } // namespace mus |
| 100 } // namespace ash | 96 } // namespace ash |
| 101 | 97 |
| 102 #endif // ASH_MUS_TEST_WM_TEST_BASE_H_ | 98 #endif // ASH_MUS_TEST_WM_TEST_BASE_H_ |
| OLD | NEW |